WHiSPER
WHiSPER

Reputation: 51

Wordpress: list author's posts in author.php

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

Answers (1)

Shady Mohamed
Shady Mohamed

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

Related Questions