How do I remove the parantheses around the post count after each category? Is it even possible?
How do I remove the parantheses around the post count after each category? Is it even possible?
It will be possible, and I hope this is right:
file: template-functions-category.php
line: 222
if (intval($optioncount) == 1) echo ' ('.$category->cat_count.')';
If you made it into
if (intval($optioncount) == 1) echo ' ~'.$category->cat_count.'~';
then the display should alter accordingly.
I've not tried it but I think it'll work.
This topic has been closed to new replies.