我该如何在单个产品上检查某个产品是否属于某个产品类别。php?
<?php if (is_product_category(\'audio\')) {
echo \'In audio\';
woocommerce_get_template_part( \'content\', \'single-product\' );
} elseif (is_product_category(\'elektro\')) {
echo \'In elektro\';
woocommerce_get_template_part( \'content\', \'single-product\' );
} else {
echo \'some blabla\'; } ?>
is_product_category(\'slug\') 不会对single-product.php. 我想得到上面的条件句。在单个产品页面上有解决方案吗?