主页上未显示页面特色图像

时间:2014-12-07 作者:Abdul Rehman

我在创造我自己的主题,我的小练习。我补充道the_post_thumbnail 在索引中。php页面。所有最新帖子的特色图片都显示在主页上,除了Page featured image.

当我添加the_post_thumbnail 在索引中。php,我不明白为什么页面特色图片没有显示在主页上。

有什么建议吗?edited posti think my code not supported page featured image. here\'s my code

 <?php while(have_posts()) : the_post() ?>
                <div class="post">
                    <h2 class="title"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
                    <div class="entry"> 
               <a href="<?php the_permalink(); ?>" class="image image-full">
                            <?php  the_post_thumbnail(\'full\');  ?>
               </a>

                    </div>
                </div>
                <div style="clear: both;">&nbsp;</div>
                         <?php endwhile; ?>

1 个回复
最合适的回答,由SO网友:Dan 整理而成

我想你需要actual page object 然后从那里找到ID。然后,您可以将该ID传递给the_post_thumbnail(), 否则,我认为将使用循环中帖子的ID,而不是实际的主页。试试这个$page_object = get_queried_object(); 获取有关主页的信息。

结束

相关推荐