从Timber的关系领域获得ACF

时间:2015-10-13 09:37:06

标签: php wordpress advanced-custom-fields

我在自定义帖子类型上使用高级自定义字段。在主页上,我有一个关系字段,用于选择自定义帖子类型中的一个帖子。

使用Timber,我正在努力将该关系的ACF字段发布到Context中。我可以获得标题和内容的标准wordpress信息,但不能获得ACF。

我想我需要使用TimberPost,但到目前为止还没有取得任何成功。

这是在我的页面模板中。在视图中它只输出所有标准的WP内容:

$context['featureRelationship'] = get_field('feature');

所以我试过这个,但我在某个地方出错:

$context['featureRelationship'] = new TimberPost(get_field('feature'));

感谢任何帮助,谢谢

1 个答案:

答案 0 :(得分:0)

排序,所以php是对的:

$context['featureRelationship'] = new TimberPost(get_field('feature'));

但我应该使用post object acf字段而不是关系