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
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
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;
}This topic has been closed to new replies.