optionsframework_custom_scripts
The SKT Photo World optionsframework custom scripts hook.
Description
do_action( 'optionsframework_custom_scripts' );
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'optionsframework_custom_scripts' );
- The following example is for adding a hook callback.
- // define the optionsframework_custom_scripts callback
- function action_optionsframework_custom_scripts( ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'optionsframework_custom_scripts', 'action_optionsframework_custom_scripts', 10, 0 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'optionsframework_custom_scripts', 'action_optionsframework_custom_scripts', 10, 0 );
Defined (1)
The action is defined in the following location(s).
- /inc/includes/class-options-framework-admin.php
- do_action( 'optionsframework_custom_scripts' );