Advertisement
lorro

WooCommerce - Hide a category in the categories widget

Jan 5th, 2016
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.32 KB | None | 0 0
  1. <?php
  2.   // hide a category from the categories widget
  3.   // code goes in functions.php for your child theme
  4.  
  5.   add_filter( 'woocommerce_product_categories_widget_args', 'woo_product_cat_widget_args' );
  6.   function woo_product_cat_widget_args( $cat_args ) {
  7.     $cat_args['exclude'] = array('17');
  8.     return $cat_args;
  9.   }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement