parse_comment_query action-hook . WP 4.2.0
Fires after the comment query vars have been parsed.
Usage
add_action( 'parse_comment_query', 'action_function_name_8516' ); function action_function_name_8516( $this ){ // action... }
- $this(WP_Comment_Query)
- The WP_Comment_Query instance (passed by reference).
Changelog
Since 4.2.0 | Introduced. |
Where the hook is called
parse_comment_query
wp-includes/class-wp-comment-query.php 328
do_action_ref_array( 'parse_comment_query', array( &$this ) );