我正在尝试为某个类别打印自定义字段,但没有成功。
这是我的代码:
$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');
}