“WP_Query Count Result” Kod odpowiedzi

WP_Query Item Count

<?php $count = $custom_posts->found_posts; ?>
Wandering Walrus

WP_Query Count Result

$args = array('post_type'   => 'post',
              'posts_per_page' => '4',
              'paged' => $pagination);
$posts = new \WP_Query( $args );
echo $posts->post_count; // echo number of posts on query
// If you what to know if you arrived to pagination end then:
if ($posts->max_num_pages == $pagination) echo "You are on an end page"; 
gtamborero

Odpowiedzi podobne do “WP_Query Count Result”

Pytania podobne do “WP_Query Count Result”

Więcej pokrewnych odpowiedzi na “WP_Query Count Result” w PHP

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu