簡體   English   中英

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

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

我想在作者頁面上顯示作者的有限post titles 我在wordpress loop外使用代碼來顯示作者的有限帖子,並且代碼是<?php query_posts('posts_per_page=20'); ?> <?php query_posts('posts_per_page=20'); ?> 但它顯示最近的帖子,我只想要作者的帖子。

怎么做,有人有主意嗎?

采用

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

或使用

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

樣例代碼

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

?>

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM