comments_list_table_query_args, $args
comments_list_table_query_args, $args
Appears in: 7.0.3
Hook Type: filter
Displaying hooks found in version: 7.0.3apply_filters('comments_list_table_query_args, $args') is found 1 times:
- /wp-admin/includes/class-wp-comments-list-table.php line 172
* @since 5.1.0 * * @param array $args An array of get_comments() arguments. */ $args = apply_filters( 'comments_list_table_query_args', $args ); $_comments = get_comments( $args ); if ( is_array( $_comments ) ) { $this->items = array_slice( $_comments, 0, $comments_per_page ); $this->extra_items = array_slice( $_comments, $comments_per_page );