Just noticed that the-author function does not work when searching for all posts by an author.
when displaying posts in the loop we have the following line:
><?php the_time('l, F jS, Y'); ?> &nbsp <?php the_time( ); ?> | Author: <?php the_author_posts_link();?> | <?php the_category(', '); ?>
| <?php comments_popup_link(__('No Comments'), __('1 Comment'), __('% Comments')); ?>
the author shows up correctly in each post.
However when clicking on the author's name in a post the following line is supposed to retrieve all posts by the author. It does retrieve the posts but doe not display the name of the author in the line:
"You are currently browsing posts by (missing author's name)."
<?php /* If this is an author */ } elseif (is_author()) { ?>
<div class="notice">You are currently browsing posts by><?php the_author(''); ?>.
</div>