Advertisement
imranmodel32

Categories widget filter

Nov 26th, 2014
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.21 KB | None | 0 0
  1. add_filter('wp_list_categories', 'add_span_cat_count');
  2. function add_span_cat_count($links) {
  3. $links = str_replace('</a> (', '</a> <span>(', $links);
  4. $links = str_replace(')', ')</span>', $links);
  5. return $links;
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement