parse_comment_query
Fires after the comment query vars have been parsed.
Description
Parameters (1)
- 0. $array (array) =>
array( &$this )
- &
$this
TheWP_Comment_Query
instance (passed by reference).
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'parse_comment_query', $array );
- The following example is for adding a hook callback.
- // define the parse_comment_query callback
- function action_parse_comment_query( $array ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'parse_comment_query', 'action_parse_comment_query', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'parse_comment_query', 'action_parse_comment_query', 10, 1 );
Defined (1)
The action is defined in the following location(s).
- /wp-includes/class-wp-comment-query.php
- do_action_ref_array( 'parse_comment_query', array( &$this ) );