Forums
Forums / Fixing WordPress / clickable post count
(@gnarbles)
15 years, 2 months ago
im using `<?php wp_list_categories(‘orderby=name&title_li= &show_count=1′); ?>` and was wondering how to make its actual post count number clickable with the category name
(@alchymyth)
add a filter function like this to functions.php of your theme:
add_filter('wp_list_categories', 'cat_count_inline'); function cat_count_inline($links) { $links = str_replace('</a> (', ' (', $links); $links = str_replace(')', ')</a>', $links); return $links; }
The topic ‘clickable post count’ is closed to new replies.