I’m using this code:
$args = array(
'hide_empty' => FALSE,
'title_li'=> __( '' ),
'show_count'=> 1,
);
wp_list_categories($args);
How can i wrap the post count in a span for further styling?
Thanks
adding a filter to functions.php of your theme is one possibility:
this would add the spans to any occurrence of ‘wp_list_categories()’ site wide.
or change your code into: