How could I include the count of posts under a category into the a-tag when listing categories. This has been a problem for me many times but now I decided to find out.
<li><a href="#" title="asd">php</a> (1)</li>
to
<li><a href="#" title="asd">php (1)</a></li>
Is you propably assumed, I’m using wp_list_categories to make this list.
Any solutions?
Martti Laine
I solved it. Posting here so someone can use it 🙂
I recently had this problem as well. Other forums I read suggested regex too and personally that option seemed prone to flaw.
My recommendation is this:
It also gives you the option to format the number in something other than parens if you wish.