高级自定义字段未打印类别的字段


Advanced Custom Fields not printing field for category

我正试图打印一个类别的自定义字段,但没有成功。

这是我的代码:

     $args = array(
    'taxonomy'  => 'gb_category',
    'orderby'   => 'name',                                      
    'style'     => 'list',
    'hide_empty' => 0,
 ); 
$categories = get_categories($args);
$i = 1;
foreach ($categories as $cat) {
    the_field('category_custom_field');
}

已解决。

如果你需要为类别自定义备案,那么你可以使用以下代码进行调用:

<?php the_field('starting_from', 'category_'.$cat->cat_ID); ?>

如果你有自定义类别类型,那么你用这个代码调用:

<?php the_field('starting_from', 'category_type_'.$cat->cat_ID); ?>