Tôi có wp_query $wp_query = new WP_Query($args);
nhưng vì một số lý do, $wp_query->post_count
chỉ hiển thị số lượng bài đăng trên mỗi trang. Vì vậy, nếu tôi đặt 'showposts' => '10'
và tìm thấy 12 kết quả, trang một sẽ cho biết '10 kết quả được tìm thấy 'và trang 2 hiển thị' 2 kết quả được tìm thấy '. Tại sao lại thế này? Tôi không thể tìm ra nó.
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
$args = array(
'post_type' => 'post',
'showposts' => '10',
'paged' => $paged
);
$wp_query = new WP_Query($args);
echo "Search found ".$wp_query->post_count."results";
if ($wp_query->have_posts()) : while ($wp_query->have_posts()) : $wp_query->the_post();
// the loop
$wp_query->found_posts
là tốt?