簡體   English   中英

帖子內容未顯示ACF

[英]Post content is not displaying ACF

如果執行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-## -->

您需要將“內容”函數調用放在WordPress循環內,以使其將您的內容輸出到頁面,如下所示。

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

希望能有所幫助,干杯!!!

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM