【发布时间】:2012-10-24 01:55:42
【问题描述】:
我有这段代码来显示所有类别的帖子和它们的缩略图。
<?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 个帖子只有标题和永久链接
【问题讨论】:
-
在这段代码中看不到任何缩略图?
-
对不起。我忘了插入它。我正在使用
标签: php wordpress thumbnails displaytag