-2

我使用高级自定义字段 (ACF) wordpress 插件在 Woocommerce -> 产品 -> 类别表单上添加自定义字段。

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

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

谢谢,凯坦。

4

1 回答 1

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
}

?>
于 2017-09-07T10:01:54.720 回答