如何检索WooCommerce属性作为选择的分类术语

时间:2017-07-13 13:30:22

标签: php wordpress woocommerce advanced-custom-fields

我有这个ACF字段:

Field Name: brand
Field Type: Taxonomy
Taxonomy: pa_brand

enter image description here

WooCommerce产品属性:

Name: brand
slug: brand
term id: 51
value: ASUS

enter image description here

我正在尝试这些代码,但它不起作用:

<?php the_field(‘brand’, $term); ?>

<?php the_field(‘brand’, ‘product_51’); ?>

或者,如果我错了,我怎么知道要使用的类别。

1 个答案:

答案 0 :(得分:1)

将对象传递给the_field()方法,参见下面的代码

  $obj = get_queried_object();

  the_field(‘brand’, $obj);