【发布时间】:2014-08-11 22:43:30
【问题描述】:
我想在作者页面显示作者有限的posttitles。
我正在使用 wordpress loop 之外的代码来显示作者的有限帖子,代码是 <?php query_posts('posts_per_page=20'); ?> 。但它显示的是最近的帖子,我只想要作者的帖子。
如何做到这一点,有人知道吗?
【问题讨论】:
我想在作者页面显示作者有限的posttitles。
我正在使用 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();
?>
【讨论】:
使用
query_posts('posts_per_page=20&author=$ID');
或使用
query_posts('posts_per_page=20&author_name="admin"');
【讨论】: