我想在作者页面上显示作者的有限post
titles
。
我使用wordpress loop
之外的代码来显示作者的有限帖子,代码为<?php query_posts('posts_per_page=20'); ?>
。但它显示最近的帖子,我只想要作者的帖子。
如何做到这一点,任何人都有想法?
答案 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();
?>