Advertisement
bongzilla

Untitled

Jan 8th, 2022
1,148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.38 KB | None | 0 0
  1. add_filter("woocommerce_product_query_tax_query", "hwn_hide_shop_categories");
  2.  
  3. function hwn_hide_shop_categories($tquery) {
  4.     $hidden_categories = array("tshirts", "hoodies");
  5.     if (is_shop()) {
  6.         $tquery[] =
  7.             array(
  8.                 "taxonomy" => "product_cat",
  9.                 "terms"    => $hidden_categories,
  10.                 "field"    => "slug",
  11.                 "operator" => "NOT IN"
  12.         );
  13.     }
  14.  
  15.     return $tquery;
  16. }
  17.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement