【发布时间】:2013-06-17 19:43:28
【问题描述】:
我编写了一些代码来显示来自特定类别的最新 5 个帖子,但是我不知道如何让它显示来自该类别的最新 5 个帖子,这些帖子被标记为仅特色。精选是指帖子已被粘贴,因此基本上它将显示每个类别中已粘贴的 5 个帖子。
<ul id="index-blog">
<?php $the_query = new WP_Query( 'category_name=whats-on&showposts=5' ); ?>
<?php while ($the_query -> have_posts()) : $the_query -> the_post(); ?>
<div class="index-thumb"><?php the_post_thumbnail(array(50,50), array ('class' => 'alignleft')); ?></div>
<div class="indexblog-title"><a title="<?php the_title(); ?>" href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></div>
<li>
<?php the_excerpt(__('(more…)')); ?>
</li>
<?php endwhile;?>
</ul>
【问题讨论】: