List Tables: after [34271], account for searches when calculating pagination.

Fixes #29870.



git-svn-id: https://develop.svn.wordpress.org/trunk@35622 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Scott Taylor 2015-11-11 23:13:46 +00:00
parent 84aeb528fa
commit b1d93d6d6a
1 changed files with 2 additions and 0 deletions

View File

@ -175,6 +175,8 @@ class WP_Posts_List_Table extends WP_List_Table {
if ( $this->hierarchical_display ) {
$total_items = $wp_query->post_count;
} elseif ( isset( $_REQUEST['s'] ) ) {
$total_items = $wp_query->found_posts;
} else {
$post_counts = (array) wp_count_posts( $post_type, 'readable' );