Number of posts for an archive page
-
Hi,
I am wanting to display the number of posts for an archive page, in my for a month and for all my searching I have only come across code displays the totals for all the archives you have eg.
May (10)
April (17)
Febuary (2)The code is as follows.
<?php wp_get_archives('type=monthly&show_post_count=1'); ?>
What I want is some code to display the number of posts for just the current archive page so if I am in Mays page then I would use my code where I want to display the number of posts and it would return X.. eg.
You are viewing May 2009 archives. There are 10 posts.
but the code would be something like this
You are viewing May 2009 archives. There are<?php get_count($theCurrentArchiveMonth); ?> posts.
Of course my example code is wrong, but that’s what I am trying to achieve. Any pointers would be apreciated. Thanks
- The topic ‘Number of posts for an archive page’ is closed to new replies.