php - How to call limit post of author on author page (wordpress) -
i want show author's limited post
titles
on author page. i'm using code outside wordpress loop
show limited post of author , code <?php query_posts('posts_per_page=20'); ?>
. showing recent post , want posts author.
how this, have idea?
sample code
<?php $the_query = new wp_query(array('posts_per_page'=>20,'author'=>$put_author_id_here) ); while ( $the_query->have_posts() ) : the_post(); /* display post in loop*/ endwhile; wp_reset_postdata(); ?>
php wordpress
No comments:
Post a Comment