Hi again.
In the little script I have for the author page ... it is as follows:
Code:
<h3>Posts by <?php echo $curauth->display_name; ?>:</h3>
<ul>
<!– The Loop –>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>[*]
<a href=”<?php the_permalink() ?>” rel=”bookmark” title=”Permanent Link: <?php the_title(); ?>”>
<?php the_title(); ?></a>
<?php endwhile; else: ?>
<?php _e('No posts by this author.'); ?></p>
<?php endif; ?>
<!– End Loop –>[/list]
It's only listing the last 10 posts by the author .. which, I guess makes sense because the wordpress settings defaults to 10 posts on the front page (settings/reading)
Q) How can I force this to list 100% of the posts by each author?
I looked at wordpress but couldn't find any examples in support search and on
http://codex.wordpress.org/Author_Templates page.