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

时间:2014-06-21 08:19:16

标签: php wordpress

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

如何做到这一点,任何人都有想法?

2 个答案:

答案 0 :(得分:0)

使用

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

或使用

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

答案 1 :(得分:0)

示例代码

<?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();

?>