如何在wordpress博客首页实现像cms一样调用多个文章列表(每个栏目一个列表)?

求帮助!类似下面的就行。
真心求帮助。着急

<?php $rand_posts = get_posts('numberposts=5&category=1');foreach($rand_posts as $post) : ?>
<li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
<?php endforeach;?>

numberposts=5 文章数
&category=1 分类id追问

放到什么地方?首页的模板里?

追答

index.php里面

温馨提示:答案为网友推荐,仅供参考
第1个回答  2013-07-30
使用WP的标签调用啊,如果你添加这一块就需要添加CSS样式,然后添加这段调用代码实现。
第2个回答  2013-07-30
下载“知更鸟”的主题,还有好几个主题都有这功能,研究他们的,更好
相似回答