Are you looking for a way to remove the parentheses surrounding the category count? We have created a quick code snippet that you can use to remove parentheses from category counts using wp_list_categories
.
Instructions:
All you have to do is add this code to your theme’s template file:
<?php $variable = wp_list_categories('echo=0&show_count=1&title_li=<h2>Categories</h2>'); $variable = str_replace(array('(',')'), '', $variable); echo $variable; ?>
Note: If this is your first time adding code snippets in WordPress, then please refer to our guide on how to properly copy / paste code snippets in WordPress, so you don’t accidentally break your site.
If you liked this code snippet, please consider checking out our other articles on the site like: Contact Form 7 vs WPForms – Which one is best and 19 best WordPress plugins for photographers.
Comments Leave a Reply