“wp get_results считается” Ответ

wp_query chount

<?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

wp get_results считается

global $wpdb;
$wpdb->get_results("
	-- YOUR QUERY
                "); 
-- get_results IT RETURNS AN ARRAY IF QUERY HAS 1 OR MORE ROWS
echo $wpdb->num_rows;
Enrybi

Ответы похожие на “wp get_results считается”

Вопросы похожие на “wp get_results считается”

Больше похожих ответов на “wp get_results считается” по PHP

Смотреть популярные ответы по языку

Смотреть другие языки программирования