Display post count within link for monthly archives
-
With
wp_get_archives('type=monthly&show_post_count=1&echo=0')
I can display monthly archive links like the following:
<li><a href="blog/date/2009/07/" title="July 2009">July 2009</a> (1)</li>
This is standard WordPress functionality.However, I would like to find a way to display the same information like this:
<li><a href="blog/date/2009/07/" title="July 2009">July 2009 (1)</a></li>
with the monthly post count inside of the anchor tag.I can do this with categories in the following manner:
foreach (get_categories(array('hide_empty'=>true)) as $category){$category_variable .= '<li><a href="' . get_category_link($category->term_id) . '">' . $category->cat_name . ' (' . $category->count . ')</a></li>';}
Is there any way do that for date archives? So far I am coming up empty.
Any help is greatly appreciated!
??
- The topic ‘Display post count within link for monthly archives’ is closed to new replies.