2

我正在尝试为某个类别打印自定义字段,但没有成功。

这是我的代码:

     $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');

}
4

1 回答 1

8

解决了。

如果您需要为类别自定义归档,则使用以下代码调用:

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

如果您有自定义类别类型,那么您可以使用以下代码调用:

<?php the_field('starting_from', 'category_type_'.$cat->cat_ID); ?>
于 2012-07-06T08:45:11.337 回答