Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save idavinder/5c08df65dc3aca6f7244 to your computer and use it in GitHub Desktop.
Save idavinder/5c08df65dc3aca6f7244 to your computer and use it in GitHub Desktop.
Exclude Categories from Category Widget in WordPress
//* Exclude Categories from Category Widget - basicWP.com
function custom_category_widget($args) {
$exclude = "3,4"; // Category IDs to be excluded
$args["exclude"] = $exclude;
return $args;
}
add_filter("widget_categories_args","custom_category_widget");
@renrax
Copy link

renrax commented Jan 21, 2022

Hi @basicwp ,
Do you know how to show Featured Products from the current category only in the widget Product List?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment