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. Built from https://develop.svn.wordpress.org/trunk@49720 git-svn-id: http://core.svn.wordpress.org/trunk@49443 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
a9490c4639
commit
785cb6cc7d
|
@ -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'],
|
||||
)
|
||||
);
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '5.7-alpha-49718';
|
||||
$wp_version = '5.7-alpha-49720';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue