Comments: Introduce filter for the arguments for the comment query in the comments list table.

Add `comments_list_table_query_args` filter to the Comments List Table.

Props soulseekah, birgire.
Fixes #42997.
Built from https://develop.svn.wordpress.org/trunk@42420


git-svn-id: http://core.svn.wordpress.org/trunk@42251 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Rachel Baker 2017-12-29 18:21:52 +00:00
parent 02d04f2b5c
commit 386a5c397f
2 changed files with 10 additions and 1 deletions

View File

@ -134,6 +134,15 @@ class WP_Comments_List_Table extends WP_List_Table {
'post_type' => $post_type,
);
/**
* Filters the arguments for the comment query in the comments list table.
*
* @since 5.0.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 ) ) {
update_comment_cache( $_comments );

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '5.0-alpha-42419';
$wp_version = '5.0-alpha-42420';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.