我有这段代码来显示所有类别的帖子和它们的缩略图。
<?php $recent = new WP_Query(); ?>
<?php $recent->query('cat=1&showposts=5'); ?>
<?php while($recent->have_posts()) : $recent->the_post(); ?>
<ul>
<li>
<a href="<?php the_permalink(); ?>">
<?php the_title(); ?>
</a>
</li>
</ul>
<?php endwhile; ?>
但现在我只想显示类别第一篇文章的缩略图。显然,前类别有 4 个帖子,我显示 4 个帖子,但只有第一个帖子有缩略图,3 个帖子只有标题和永久链接