发布内容未显示ACF

时间:2017-08-02 18:27:23

标签: php wordpress advanced-custom-fields

为什么我无法看到帖子内容,如果我进行wordpress搜索,我可以轻松看到帖子标题。我有一个自定义的帖子类型"艺术家"我正在使用ACF。

            <?php
            if ( have_posts() ) : ?>

            <?php
             /* Start the Loop */
             while ( have_posts() ) : the_post(); ?>






           <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
           <header class="entry-header">
           <?php the_title( sprintf( '<h2 class="entry-title"><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ), '</a></h2>' ); ?>

              </header><!-- .entry-header -->

             <div class="entry-summary">
             <?php the_content(); ?>
              </div><!-- .entry-summary -->

             <footer class="entry-footer">
             <?php edigital_entry_footer(); ?>
             </footer><!-- .entry-footer -->
             </article><!-- #post-## -->

1 个答案:

答案 0 :(得分:1)

您需要在WordPress循环中添加&#34;内容&#34; 函数调用,以便将内容输出到页面,如下所示。

<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php the_content(); ?>
<?php endwhile; endif; ?>

希望有所帮助,干杯!!!