在分类模板中获取元字段 (ACF)
To get meta field (ACF) in taxonomy template
我在分类页面中,在自定义分类和特定术语中 URL:
http://localhost:3000/personas/cristina-aiken-soux/
另外,我有这个页面的分类模板:
taxonomy-personas.php
在此模板中,我正在尝试恢复并显示高级自定义字段:
$term_object = get_queried_object();
the_field('picture', $term_object->term_id);
但没有返回任何信息。为什么?
如果我这样做 print_r($term_object);
我可以看到查询的对象:
WP_Term Object (
[term_id] => 2 [name] => Cristina Aiken Soux
[slug] => cristina-aiken-soux
[term_group] => 0
[term_taxonomy_id] => 2
[taxonomy] => personas
[description] => Cras in elementum enim, vitae volutpat sapien. Duis at sem in quam ultrices hendrerit. Class aptent taciti sociosqu ad litora torquent.
[parent] => 0
[count] => 2
[filter] => raw
)
那么,为什么我无法恢复 de ACF?
谢谢!
终于找到了解决方法
$foto = get_field('fotopersona', 'personas'.'_'.$term_object->term_id);
我在分类页面中,在自定义分类和特定术语中 URL:
http://localhost:3000/personas/cristina-aiken-soux/
另外,我有这个页面的分类模板:
taxonomy-personas.php
在此模板中,我正在尝试恢复并显示高级自定义字段:
$term_object = get_queried_object();
the_field('picture', $term_object->term_id);
但没有返回任何信息。为什么?
如果我这样做 print_r($term_object);
我可以看到查询的对象:
WP_Term Object (
[term_id] => 2 [name] => Cristina Aiken Soux
[slug] => cristina-aiken-soux
[term_group] => 0
[term_taxonomy_id] => 2
[taxonomy] => personas
[description] => Cras in elementum enim, vitae volutpat sapien. Duis at sem in quam ultrices hendrerit. Class aptent taciti sociosqu ad litora torquent.
[parent] => 0
[count] => 2
[filter] => raw
)
那么,为什么我无法恢复 de ACF?
谢谢!
终于找到了解决方法
$foto = get_field('fotopersona', 'personas'.'_'.$term_object->term_id);