Last active
September 17, 2019 17:21
-
-
Save OscarAbadFolgueira/8c64a267701817d8c53bf380bb6b9384 to your computer and use it in GitHub Desktop.
WooCommerce Snippet para excluir categorías del widget de categorías de productos
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
add_filter( 'woocommerce_product_categories_widget_args', 'dinapyme_woocommerce_excluir_categoria_del_widget' ); | |
// Creación de la función que añade los IDs de las categorías al array de argumentos | |
function dinapyme_woocommerce_excluir_categoria_del_widget( $argumentos_widget ) { | |
$argumentos_widget['exclude'] = array('12','10'); //añadirmos las IDs de las categorías | |
return $argumentos_widget; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment