wordpress - 在帖子页面显示ACF字段

时间:2015-12-09 13:45:01

标签: php wordpress field advanced-custom-fields

我在wordpress网站的标题中加载字段。此字段在顶部显示文本。

<?php the_field('text_on_top'); ?>

每个页面都显示它,每个ACF页面上的字段名称完全相同。

我的问题:博客/帖子页面没有加载该字段。出了什么问题?

1 个答案:

答案 0 :(得分:0)

  

使用:the_field()到get_field();

<?php echo get_field( "text_on_top" ); ?>

从特定帖子中获取值

$value = get_field( "text_on_top", $post->ID);

More details