我是WordPress的新手,我希望在右侧面板中显示某个类别中最近发布的帖子列表(我可以对所有帖子执行此操作,但不能对特定类别执行此操作)
我在wordpress上使用了210主题。com。我发现了以下代码,但不确定是否可以或在何处添加此代码:
<ul>
<?php $recent = new WP_Query("cat=10&showposts=5"); while($recent->have_posts()) : $recent->the_post();?>
<li><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></li>
<?php endwhile; ?>
</ul>