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