自定义字段现在使用Wordpress显示在我的新页面上?

时间:2017-04-27 21:13:08

标签: php wordpress advanced-custom-fields custom-wordpress-pages

我为网页创建了一个新模板。

<?php
    /**
     * Template Name: Sponsors For Homepage
     */
    ?>

    <html>
    <body>
    <?php get_header('sponsor'); ?>

    <div class='divone'>
      <?php the_content(); ?>
    </div>

    <div class='divtwo'>
    <?php sponser_advertisement(); ?>
    </div>

    </section>
    </body>
    </html>

我为模板添加了一个新的自定义字段。使用高级自定义字段插件4.4.8 enter image description here

我确保该字段会显示在正确的模板上: enter image description here

字段显示在我的模板页面上

enter image description here

由于某种原因,当我在浏览器中预览页面时,字段值“这是新字段”不会显示。

提前致谢。

建议?

1 个答案:

答案 0 :(得分:1)

这是显示自定义字段值的错误方法。

如果要在模板中显示自定义字段值,请使用高级自定义字段插件,您必须使用以下功能:

setWaitForTasksToCompleteOnShutdown

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

您可以在此处找到有关使用ACF值的完整文档: ACF Documentation