我想在存档页面中的帖子旁边显示缩略图,但是如果帖子有特色图片,它只会显示缩略图。
是否可以将帖子的附加图像制作为缩略图并在存档页面中显示?
目前,如果设置为特色,我正在使用以下代码显示缩略图。
<?php if ( has_post_thumbnail()) : ?>
<a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>" >
<?php the_post_thumbnail(thumbnail, array('class' => 'alignleft')); ?>
</a>
<?php endif; ?>
这是网站http://n1bar.com/category/blog如您所见,第一篇文章附有图片,但未在存档页面中显示为缩略图。
任何帮助表示赞赏