我有一个使用高级自定义字段设置自定义字段的页面。其中一个字段是文本字段,用于指定“阅读更多”按钮的文本。在页面模板中,我有一个post查询来拉入帖子,我想在这个循环中使用ACF字段作为“阅读更多”文本。但是,由于ACF字段与页面关联,因此当我试图从post循环中调用它时,它不起作用:
<?php query_posts(\'showposts=1&post_type=post&cat=1\'); if ( have_posts() ): ?>
<?php while ( have_posts() ) : the_post(); ?>
<h4><?php the_title(); ?></h4>
<p><?php the_excerpt(); ?></p>
</div>
<a class="btn" href="<?php the_permalink(); ?>">
<!-- This is the field associated with the page -->
<?php the_field(\'readmore_label\'); ?>
</a>
</div>
<?php endwhile; wp_reset_query(); endif; ?>
是否可以在页面模板的post循环中使用页面自定义字段?