【发布时间】:2015-05-03 17:01:55
【问题描述】:
快速 Wordpress 问题。
我想显示我的类别“照片”中的最后 30 个帖子,但只在相关页面上显示特色图片作为链接,将用户带到实际帖子。
我已经做到了,但它显示了所有类别的帖子,而不是“照片”类别。我正在使用的代码如下。
我确信这很简单,但我很想知道如何仅显示照片类别中的最新帖子(作为特色图片)。
谢谢
<!-- In functions.php -->
function recentPosts() {
$rPosts = new WP_Query();
$rPosts->query('showposts=100');
while ($rPosts->have_posts()) : $rPosts->the_post(); ?>
<div class="photos">
<li class="recent">
<a href="<?php the_permalink();?>"><?php the_post_thumbnail('recent-thumbnails'); ?></a>
</li>
</div>
<?php endwhile;
wp_reset_query();
}
<!-- this is on the page template -->
<?php echo recentPosts(); ?>
【问题讨论】:
标签: wordpress