遵循该教程,并使用以下代码来表示特定类别的最新帖子,其中教程使用了联合国订单列表内容。
<ul>
<?php $recent = new WP_Query("cat=1&showposts=10"); while($recent->have_posts()) : $recent->the_post();?>
<li><a href="<?php the_permalink() ?>" rel="bookmark">
<?php the_title(); ?>
</a></li>
<?php endwhile; ?>
</ul>
根据您的选择更改cat id和帖子编号。