我想,query_posts(\'author=\' ID OF THE DESIRED AUTHOR)
就是你要找的。
例如:
query_posts(\'author=\' ID OF THE DESIRED AUTHOR);
while ( have_posts() ) :
the_post();
DO YOUR STUFF
endwhile;
wp_reset_query();
// Edit
当然,您可以将某个类别或其他筛选参数合并到查询中。
链接到Codex forquery_posts.