responsive_mobile_theme_options
Theme Options.
Description
do_action( 'responsive_mobile_theme_options' );
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'responsive_mobile_theme_options' );
- The following example is for adding a hook callback.
- // define the responsive_mobile_theme_options callback
- function action_responsive_mobile_theme_options( ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'responsive_mobile_theme_options', 'action_responsive_mobile_theme_options', 10, 0 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'responsive_mobile_theme_options', 'action_responsive_mobile_theme_options', 10, 0 );
Defined (1)
The action is defined in the following location(s).
- /includes/responsive-hooks.php
- do_action( 'responsive_mobile_theme_options' );