Skip to content

Instantly share code, notes, and snippets.

@techskilled
Created August 24, 2016 09:47
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 techskilled/d4fca5aebe7dab313beb9fe6f24bfd6e to your computer and use it in GitHub Desktop.
Save techskilled/d4fca5aebe7dab313beb9fe6f24bfd6e to your computer and use it in GitHub Desktop.
add_filter( 'woocommerce_product_categories_widget_args', 'woo_product_cat_widget_args' );
function woo_product_cat_widget_args( $cat_args ) {
$cat_args['exclude'] = array('16');
return $cat_args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment