我正在尝试为某个类别打印自定义字段但没有成功。
这是我的代码:
$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');
}
答案 0 :(得分:8)
解决。
如果您需要类别的自定义字段,请使用以下代码进行调用:
<?php the_field('starting_from', 'category_'.$cat->cat_ID); ?>
如果您有自定义类别类型,则使用以下代码进行调用:
<?php the_field('starting_from', 'category_type_'.$cat->cat_ID); ?>