我在wordpress上使用bootstrap主题。我最近的帖子只显示标题和一个小文本,但没有原始帖子的缩略图。
我需要最近的帖子在右边显示一个小缩略图,然后是标题和小文本
这是我的代码
<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>
假设您对帖子缩略图有主题支持,您只需添加此代码即可显示精选图片缩略图:<?php the_post_thumbnail(); ?>
。
要添加主题支持,请将其添加到functions.php文件:add_theme_support( 'post-thumbnails' );