Media: Revert [49567].

This addresses a regression with the pagination section in Media Library no longer taking additional query filtering into account.

Props iCaleb, trepmal, peterwilsoncc.
See #39968.

git-svn-id: https://develop.svn.wordpress.org/trunk@49720 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov
2020-12-01 16:31:30 +00:00
parent 0d3bc82559
commit 39fd44dd59

View File

@@ -100,7 +100,8 @@ class WP_Media_List_Table extends WP_List_Table {
$this->set_pagination_args(
array(
'total_items' => array_sum( (array) wp_count_attachments() ),
'total_items' => $wp_query->found_posts,
'total_pages' => $wp_query->max_num_pages,
'per_page' => $wp_query->query_vars['posts_per_page'],
)
);