Reputation: 937
I need to display the number of posts per each category in my WordPress theme. So it should appear like that:
The number is the number of posts, so 5 means 5 articles are in Cat1, etc....
I write the following code:-
<ul>
<?php wp_list_categories( 'orderby=name & title_li' ); ?>
</ul>
So what should I add to display the number of posts per each category?
Upvotes: 0
Views: 2080
Reputation: 148
Just add the show_count option:
<?php wp_list_categories('orderby=name&title_li=&show_count=1'); ?>
There are plenty more options too if you want to customise the output further: wp_list_categories on Wordpress Codex
Upvotes: 3