Skip to content

Instantly share code, notes, and snippets.

@jmabbas
Created November 21, 2019 05:37
Show Gist options
  • Save jmabbas/b717648ba4beb2587c2f3a30d7cd5e36 to your computer and use it in GitHub Desktop.
Save jmabbas/b717648ba4beb2587c2f3a30d7cd5e36 to your computer and use it in GitHub Desktop.
Electro - Remove Uncategorized category in Store Directory
add_filter( 'woocommerce_product_categories_widget_args', 'el_child_exclude_uncategory' );
function el_child_exclude_uncategory( $cat_args ) {
$cat_args['exclude'] = get_option( 'default_product_cat' );
return $cat_args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment