“WP_Query Count -Ergebnis” Code-Antworten

WP_Query -Artikelanzahl

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

WP_Query Count -Ergebnis

$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

Ähnliche Antworten wie “WP_Query Count -Ergebnis”

Fragen ähnlich wie “WP_Query Count -Ergebnis”

Weitere verwandte Antworten zu “WP_Query Count -Ergebnis” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen