根据产品类别,我有不同的数据显示在类别页面上。我正在获取我的类别ID
这样做:
<?php global $post;
$terms = get_the_terms( $post->ID, \'product_cat\' );
foreach ($terms as $term) {
$product_cat_id = $term->term_id;
break;
}
if ($product_cat_id == "6") {
echo "aaa";
}
elseif ($product_cat_id == "7") {
echo "bbb";
}
?>
但当产品分为两类且不起作用时,我需要显示不同的数据。
echo $product_cat_id;
它只识别一个类别。如何让它识别两个
IF
第6类产品声明
AND
7.