Created
November 21, 2019 05:37
-
-
Save jmabbas/b717648ba4beb2587c2f3a30d7cd5e36 to your computer and use it in GitHub Desktop.
Electro - Remove Uncategorized category in Store Directory
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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