Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wooexperte/9b262a1ca3269dab0fcf0baaf99ad598 to your computer and use it in GitHub Desktop.
Save wooexperte/9b262a1ca3269dab0fcf0baaf99ad598 to your computer and use it in GitHub Desktop.
WooCommerce Snippet - Festgelegte Produktkategorie in der Seitenleiste ausblenden
add_filter( 'woocommerce_product_categories_widget_args', 'wdm_edit_product_cat_widget_args' );
function wdm_edit_product_cat_widget_args( $cat_args ) {
$cat_args['exclude'] = array('20'); // Produkt ID (20) austauschen
return $cat_args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment