mh_sb_class
The MH Purity lite mh sb class hook.
Description
do_action( 'mh_sb_class' );
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'mh_sb_class' );
- The following example is for adding a hook callback.
- // define the mh_sb_class callback
- function action_mh_sb_class( ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'mh_sb_class', 'action_mh_sb_class', 10, 0 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'mh_sb_class', 'action_mh_sb_class', 10, 0 );
Defined (1)
The action is defined in the following location(s).
- /functions.php
- do_action('mh_sb_class');