Make WordPress Core

Changeset 49720

Timestamp:
12/01/2020 04:31:30 PM (4 years ago)
Author:
SergeyBiryukov
Message:

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.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/class-wp-media-list-table.php

    r49567 r49720  
    101101        $this->set_pagination_args(
    102102            array(
    103                 'total_items' => array_sum( (array) wp_count_attachments() ),
     103                'total_items' => $wp_query->found_posts,
     104                'total_pages' => $wp_query->max_num_pages,
    104105                'per_page'    => $wp_query->query_vars['posts_per_page'],
    105106            )
Note: See TracChangeset for help on using the changeset viewer.