Quantcast
Viewing all articles
Browse latest Browse all 8245

crevinamd on "Excluding Category From Widget"

Hello, I'm looking for a solution to exclude categories from the categories sidebar widget. One that compliments this one:

https://wordpress.org/support/topic/excluding-category-from-widget

specifically, this part:

function exclude_widget_categories($args){
$exclude = "11,15,16"; // The IDs of the excluding categories
$args["exclude"] = $exclude;
return $args;
}
add_filter("widget_categories_args","exclude_widget_categories");
?>

That works great for a list, but we have to use the "dropdown" option on our widget because we have so many categories, and that code is not working with the dropdown. We're trying to "exclude" some of the categories that don't need to be displayed to the general public and in turn, simplify our list. Just not sure how to exclude categories from the dropdown.

Any thoughts would be appreciated. Thanks, kevin


Viewing all articles
Browse latest Browse all 8245

Trending Articles