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