Bir wp_query var $wp_query = new WP_Query($args);
ama nedense $wp_query->post_count
sadece her sayfada yazı miktarını gösterir. Dolayısıyla, ayarlarsam 'showposts' => '10'
ve 12 sonuç bulunursa, birinci sayfada '10 sonuç bulundu 've 2. sayfada' 2 sonuç bulundu 'gösterilir. Bu neden? Ben çözemiyorum.
$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
de baktınız mı ?