我试图在产品标签中添加自定义属性值。我得到了价值,但是(对于所有产品)总是一样的。
尝试过的代码如下:
$produzents = array_shift( wc_get_product_terms( $product->id, 'pa_produzenten', array( 'fields' => 'names' ) ) );
echo $produzents;
或
$produzenten = get_the_terms( $product->id, 'pa_produzenten');
foreach ( $produzenten as $produzent ) {
echo $produzent->name;
}
谢谢