Created
March 7, 2016 20:51
-
-
Save OscarAbadFolgueira/cdb0363b88b52644706b to your computer and use it in GitHub Desktop.
WooCommerce Snippet: Excluir categorías de la lista de categorías
This file contains 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
<?php | |
/** | |
* This WooCommerce code snippet enables to exclude some categories from the categories list widget. | |
* | |
* Author: Oscar Abad Folgueira | |
* Author URI: http://www.oscarabadfolgueira.com | |
* | |
* You can copy this snippet and paste in your functions.php or you can build your own plugin | |
* | |
* Change the category ids to your needs. | |
*/ | |
add_filter( 'woocommerce_product_categories_widget_dropdown_args', 'oaf_wc_exclude_categories_from_list_widget' ); | |
add_filter( 'woocommerce_product_categories_widget_args', 'oaf_wc_exclude_categories_from_list_widget' ); | |
function oaf_wc_exclude_categories_from_list_widget( $cat_args ) { | |
$cat_args['exclude'] = array('14','17'); // array with categories ids to exclude | |
return $cat_args; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment