How to display the number of posts per each categories in WordPress? -


i need display number of posts per each category in wordpress theme. should appear that:

  • cat1 (5)
  • cat2 (3)
  • cat3 (2)

the number number of posts, 5 means 5 articles in cat1, etc....

i write following code:-

<ul>     <?php wp_list_categories( 'orderby=name & title_li' ); ?> </ul> 

so should add display number of posts per each category?

just add show_count option:

<?php wp_list_categories('orderby=name&title_li=&show_count=1'); ?> 

there plenty more options if want customise output further: wp_list_categories on wordpress codex


Comments

Popular posts from this blog

c# - SVN Error : "svnadmin: E205000: Too many arguments" -

c# - Copy ObservableCollection to another ObservableCollection -

All overlapping substrings matching a java regex -