Is it possible using wp_list_categories set count of post in category in the href?

1 Answer
1

Regular expression jiggery pokery identified:

<?php
$categories = wp_list_categories('title_li=&show_count=1&echo=0');
$categories = preg_replace('/<\/a> \(([0-9]+)\)/', ' <span class="count">[\\1]</span></a>', $categories);
echo $categories;
?>

Tags:

Leave a Reply

Your email address will not be published. Required fields are marked *