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