* * @since 1.0.0 * * @see TT_Arkam_Lite::get_instance() * * @return object Returns an instance of the TT_Arkam_Lite class */ function tt_arkam_lite() { return TT_Arkam_Lite::get_instance(); } /** * Loads plugin after all the others have loaded and have registered their * hooks and filters */ add_action( 'plugins_loaded', 'tt_arkam_lite', apply_filters( 'tt_arkam_lite_action_priority', 10 ) ); /** * Register plugin activation Hook */ register_activation_hook( __FILE__, 'tt_arkam_lite_activation_hook' ); function tt_arkam_lite_activation_hook() { set_transient( 'tt_arkam_lite_activated', true, 5 ); }