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