[WooCommerce] 特定のカテゴリでの分岐
特定のカテゴリーページもしくは、特定のカテゴリを含む商品ページ
という条件分岐メモ
1 2 3 4 5 |
<?php if ( is_product_category( 'category' ) || is_product() && has_term( 'category' , 'product_cat' ) ) { ?> // HTML <?php } ?> |
has_term の説明をちゃんと読んでなくて、
has_term( ‘category’ ) だけで動かないな〜〜〜って悩んでたら、
has_term( ‘category’ , ‘product_cat’ )
2番目の引数、「$taxonomy」を設定してなかった・・
is_product_category は WooCommerce 専用のタグ