Skip to content

Instantly share code, notes, and snippets.

@jasonyost
Created June 30, 2016 23:00
Show Gist options
  • Save jasonyost/28b53d115a1a487a53ac05d54490b8a8 to your computer and use it in GitHub Desktop.
Save jasonyost/28b53d115a1a487a53ac05d54490b8a8 to your computer and use it in GitHub Desktop.
Exclude categories from categories widget in WordPress
// Add to functions.php in the theme to exclude categories from the built-in categories widget
function exclude_widget_categories($args){
$exclude = "105,102,108,112"; // The IDs of the excluding categories
$args["exclude"] = $exclude;
return $args;
}
add_filter("widget_categories_args","exclude_widget_categories");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment