Display Custom Post Type Post Count
-
Hello,
i need to output the number of posts in a custom post type so i can later output other stuff based on the number of posts.
<?php query_posts(array('post_type' => 'galleries')); ?> <?php if ( have_posts() ) : ?> <?php while ( have_posts() ) : the_post(); $count++; ?> <?php echo $count; ?> <?php endwhile;?> <?php endif; ?> <?php wp_reset_query(); ?>
So far i have that, but it only outputs me a number per post, which is normal, but i want a variable that contains the number of posts in that post type so i can use conditional comments later
Any help?
Thank you
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘Display Custom Post Type Post Count’ is closed to new replies.