wp_query item count
<?php $count = $custom_posts->found_posts; ?>
wp_query item count
<?php $count = $custom_posts->found_posts; ?>
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";
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us