如何使用ACF插件显示分类法术语自定义字段值

时间:2017-09-07 08:53:02

标签: wordpress woocommerce advanced-custom-fields taxonomy-terms

我使用Advance Custom Field(ACF)wordpress插件在Woocommerce上添加自定义文件 - >产品 - >类别表。

现在我无法在类别页面上打印该字段值。

请参阅此屏幕截图以了解字段slug名称和其他详细信息 - > http://nimb.ws/BsSiJO并帮我在类别页面上显示字段值。

谢谢, 科坦。

1 个答案:

答案 0 :(得分:0)

显示字段

<p><?php the_field('field_name', $term); ?></p>

检索字段

<?php

$variable = get_field('field_name', 'product-cat_23');

// do something with $variable

?>

查找与当前帖子相关的字词

<?php

// load all 'category' terms for the post
$terms = get_the_terms( get_the_ID(), 'category');


// we will use the first term to load ACF data from
if( !empty($terms) ) {

    $term = array_pop($terms);

    $custom_field = get_field('category_image', $term );

    // do something with $custom_field
}

?>