Hide post count only for empty categories in widget dropdown
-
Hey folks,
I have the post count displayed for the categories widget when displayed as a dropdown.
add_filter('widget_categories_dropdown_args','show_empty_categories_links'); function show_empty_categories_links($args) { $args['hide_empty'] = 0; return $args; }
I would like to hide the (0) on empty categories only, using str_replace or similar. I would like to do this with a hook or something that I can add to functions.php. Any suggestions?
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Hide post count only for empty categories in widget dropdown’ is closed to new replies.