Skip to content

Instantly share code, notes, and snippets.

@jmabbas
Created October 23, 2019 08:48
Show Gist options
  • Save jmabbas/84a14af9d63818deac3d354c646be4f7 to your computer and use it in GitHub Desktop.
Save jmabbas/84a14af9d63818deac3d354c646be4f7 to your computer and use it in GitHub Desktop.
WooCommerce - Remove uncategoriezed
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