我目前正在为客户建立一个Woocommerce网站,我想创建一个尺寸表,以便在单个产品页面上显示。
我正在实施ACF并为" Mens / Boys"设置了一个转发器字段。和"女孩/女性"胶料。
我要做的是,根据产品类别,显示男性或女性尺码表。我在下面有以下代码,但它似乎根本没有在页面上触发。据我了解,我需要将术语而不是Woocommerce产品的类别称为自定义分类法。我是否在调用此方面做错了什么?
<?php if( has_term( '', 'Boys') || has_term('', 'Mens')) : ?>
<div class="sizing-chart">
<?php if( have_rows('male_sizing')) : ?>
<table>
<caption>Sizing Guide</caption>
<?php while( have_rows('male_sizing') ): the_row();
// Variables
$size = get_sub_field('costume_size');
$waist = get_sub_field('male_waist');
$height = get_sub_field('male_height');
?>
<tr scope="col">
<th><?php echo $size ?></th>
<td class="waist size-cell"><?php echo $waist ?></td>
<td class="height size-cell"><?php echo $height ?></td>
</tr>
<?php endwhile; ?>
</table>
</div>
提前致谢。 迈克尔
答案 0 :(得分:0)
您应该将条件编辑为
if( has_term( 'Boys', 'product_cat') || has_term('Mens', 'product_cat'))