如何让特色图片在wordpress首页文章列表或单独文章页中显示?
在首页或者single.php加入以下代码:
<?php if (has_post_thumbnail()) : ?>
<div class="featured-image-container">
<?php the_post_thumbnail('full',array( 'class' => 'aligncenter')); ?>
<!--'full'是图片尺寸,也可以使用'medium', 'large'等。-->
</div>
<?php endif; ?>
没有验证,大家看还有效吗?
来源:索梦部落
让特色图片在wordpress首页文章列表或单独文章页中显示
技术  ·  
发表回复