Knowing the total number of posts before to get into the loop

Is there a way to know the total number of posts before the loop starts? I’m thinking in use two loops. The first will do the counting, while the second one will handle the content. However, I don’t think this approach is ‘elegant’. Any other solutions?

Related posts

Leave a Reply

2 comments

  1. functions.php:

    function wpse8170_get_posts_count() {
        global $wp_query;
        return $wp_query->post_count;
    }
    

    index.php:

    if (have_posts()) :
        echo '<h1>' . wpse8170_get_posts_count() . ' Posts Found</h1>';
    
        while ( have_posts() ) : 
            the_post();
            //...
        endwhile;
    endif;
    
  2. The number of all posts for a given query is in $GLOBALS['wp_query']->found_posts.

    The number of all posts for just the page you are seeing is in $GLOBALS['wp_query']->post_count.

    To see all available variables test it with:

    add_action( 'loop_start', function() {
        print '<pre>'
            . htmlspecialchars(
                print_r( $GLOBALS['wp_query'], TRUE ),
                ENT_QUOTES,
                'utf-8',
                FALSE
            )
            . '</pre>';
    });