evolve_hook_inside_pings_list
The evolve evolve hook inside pings list hook.
Description
do_action( 'evolve_hook_inside_pings_list' );
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'evolve_hook_inside_pings_list' );
- The following example is for adding a hook callback.
- // define the evolve_hook_inside_pings_list callback
- function action_evolve_hook_inside_pings_list( ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'evolve_hook_inside_pings_list', 'action_evolve_hook_inside_pings_list', 10, 0 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'evolve_hook_inside_pings_list', 'action_evolve_hook_inside_pings_list', 10, 0 );
Defined (1)
The action is defined in the following location(s).
- /library/functions/comments.php
- do_action('evolve_hook_inside_pings_list'); // Available action: evolve_hook_inside_pings_list