Reputation: 51
I want to list 10 last posts of author in author.php template. I used this code:
<?php while (have_posts()) : the_post(); ?>
<li><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></li>
<?php endwhile;?>
But I can see only the last post of current author. Any help?
Upvotes: 1
Views: 1644
Reputation: 207
Here is the code
<?php global $query_string;
query_posts( $query_string . '&posts_per_page=10' );
while (have_posts()) : the_post(); ?>
<li><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></li>
<?php endwhile;?>
Upvotes: 1