我有这个ACF字段:
Field Name: brand
Field Type: Taxonomy
Taxonomy: pa_brand
WooCommerce产品属性:
Name: brand
slug: brand
term id: 51
value: ASUS
我正在尝试这些代码,但它不起作用:
<?php the_field(‘brand’, $term); ?>
<?php the_field(‘brand’, ‘product_51’); ?>
或者,如果我错了,我怎么知道要使用的类别。
答案 0 :(得分:1)
将对象传递给the_field()方法,参见下面的代码
$obj = get_queried_object();
the_field(‘brand’, $obj);