我在创造我自己的主题,我的小练习。我补充道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;"> </div>
<?php endwhile; ?>