0
我想顯示縮略圖旁邊我的文章在檔案頁面,但它只顯示縮略圖,如果帖子有一個特色的圖像。WordPress的:張貼縮略圖/張貼圖像附件
有沒有辦法將貼的圖像製作成縮略圖並將其顯示在存檔頁中?
目前我使用下面的代碼來顯示縮略圖,如果設置爲特色。
<?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正如你所看到的第一篇文章有一個附加的圖像,但並未顯示在存檔頁面縮略圖。
任何幫助表示讚賞