WooCommerce - get category for product page

前端 未结 5 1655
野趣味
野趣味 2020-11-30 03:13

For my WC product pages, I need to add a class to the body tag so that I can perform some custom styling. Here\'s the function I\'m creating for this...

func         


        
5条回答
  •  孤城傲影
    2020-11-30 03:49

    ID, 'product_cat');
          foreach ($terms as $term) {
    
            $product_cat = $term->name;
               echo $product_cat;
                 break;
      }
     ?>
    

提交回复
热议问题