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?
while, there's someQUERY... that's the important part. Please, edit your Question and add this information to it. – brasofilo Nov 1 '12 at 2:32