如何在作者页面(wordpress)上调用作者的限制帖子


How to call limit post of author on author page (wordpress)

我想在作者页面上显示作者的有限post titles。我使用wordpress loop外面的代码来显示作者的有限职位,代码是<?php query_posts('posts_per_page=20'); ?>。但它显示的是最近的帖子,我只想要作者的帖子。

怎么做,有人知道吗?

示例代码

<?php   
$the_query = new WP_Query(array('posts_per_page'=>20,'author'=>$put_author_id_here) );
while ( $the_query->have_posts() ) : the_post();
/* display the post as you do in loop*/
endwhile;
wp_reset_postdata();
?>

use

query_posts('posts_per_page=20&author=$ID'); 

或使用

query_posts('posts_per_page=20&author_name="admin"');