GET_TEMPLATE_PART函数并添加图像 时间:2013-11-27 作者:Slaythern Aareonna 在任何页面中添加此功能:get_template_part(\'recent\', \'posts\'); 以及:if(have_posts()){ while(have_posts()){ the_post(); ?> <div class="site-content clearfix"><?php the_content(); ?></div> <?php } } 工作正常,在我的页面上显示5篇博客文章。但它只有标题和出版日期。我想在这篇文章中添加缩略图。我该怎么做? 1 个回复 SO网友:Nicolai Grossherr 您可以使用get_the_post_thumbnail(): echo get_the_post_thumbnail( $page->ID, \'thumbnail\' ); 结束 文章导航