Skip to content

Instantly share code, notes, and snippets.

@surefirewebserv
Created October 26, 2015 15:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save surefirewebserv/0f320927d081651947a8 to your computer and use it in GitHub Desktop.
Save surefirewebserv/0f320927d081651947a8 to your computer and use it in GitHub Desktop.
Hide Categories from WP Category Widget
<?php
/* Remove category from category widget */
function dtwd_exclude_widget_category($args){
$exclude = "1,2,3"; // IDs of excluding categories
$args["exclude"] = $exclude;
return $args;
}
add_filter("widget_categories_args","dtwd_exclude_widget_category");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment