0
我在WordPress上使用引導主題。 我最近的帖子只顯示標題和一個小文本,但沒有原始帖子的縮略圖。如何添加縮略圖到最近的帖子,WordPress的
我需要的最近的文章中顯示一個小縮略圖在右側則標題和SMaL公司的文本
這裏是我的代碼
<div class = "col-md-10">
<?php while(have_posts()) : the_post(); ?>
<div class="well well-sm">
<h3>
<a href = "<?php the_permalink(); ?>"><?php the_title(); ?></a>
</h3>
<p>
<?php the_excerpt(); ?>
</p>
<small class="text-muted"><?php the_time('j F Y'); ?></small>
</div>
<?php endwhile; wp_reset_query(); ?>
</div>