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