Skip to content

Instantly share code, notes, and snippets.

@laranz
Created February 19, 2018 02:23
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 laranz/850035e0b9e203e5380a490ce9be27ae to your computer and use it in GitHub Desktop.
Save laranz/850035e0b9e203e5380a490ce9be27ae to your computer and use it in GitHub Desktop.
// Hide Uncategorized from "Products Category" widget.
add_filter( 'woocommerce_product_categories_widget_args', 'custom_woocommerce_product_subcategories_args' );
function custom_woocommerce_product_subcategories_args( $args ) {
$args['exclude'] = get_option( 'default_product_cat' );
return $args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment