ninja_forms_loaded
It's Ninja Time: Hook for Extensions.
Description
do_action( 'ninja_forms_loaded' );
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'ninja_forms_loaded' );
- The following example is for adding a hook callback.
- // define the ninja_forms_loaded callback
- function action_ninja_forms_loaded( ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'ninja_forms_loaded', 'action_ninja_forms_loaded', 10, 0 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'ninja_forms_loaded', 'action_ninja_forms_loaded', 10, 0 );
Defined (1)
The action is defined in the following location(s).
- /ninja-forms.php
- do_action( 'ninja_forms_loaded' );