wordpress-获得分类下的文章列表

最近在用wordpress做一个网站,需要获得某个分类下的文章列表,下面是我网站上的代码。具体关于 WP_Query的用法可以参考:http://codex.wordpress.org/Function_Reference/WP_Query

1
2
3
4
5
6
7
8
<?php 
$recent = new WP_Query();
$recent->query('category_name='.$cat_name.'&amp;showposts=20');
while($recent->have_posts()) :
$recent->the_post();
the_title();
endwhile;
?>