我已经注册了一个新的分类法,并使用高级自定义字段4.4.0为其术语(子类别)分配了一个自定义字段(图像)。不知怎的,我无法在自定义页面模板上显示它。
$term = get_query_var('term');
$term = get_term_by('slug', $term, 'gallery');
$termid = $term->term_id;
get_field('featured_image', $termid);
我做错了什么?
任何帮助表示赞赏!
答案 0 :(得分:0)
尝试回显'get_field()'或将其存储在变量中然后回显它。
$custom = get_field('featured_image', $termid);
echo $custom;
答案 1 :(得分:0)
你的代码是对的。但你必须回显或打印才能写入屏幕。或者您可以使用the_field();
功能。