01- Open up the file “author.php”
02- locate the code
(looks like this or similar)
<?php
// If a user has filled out their description, show a bio on their entries.
if ( get_the_author_meta( ‘description’ ) ) : ?>
<div id=”entry-author-info”>
<div id=”author-avatar”>
<?php echo get_avatar( get_the_author_meta( ‘user_email’ ), apply_filters( ‘twentyten_author_bio_avatar_size’, 60 ) ); ?>
</div><!– #author-avatar –>
<div id=”author-description”>
<h2><?php printf( __( ‘About %s’, ‘twentyten’ ), get_the_author() ); ?></h2>
<?php the_author_meta( ‘description’ ); ?>
</div><!– #author-description –>
</div><!– #entry-author-info –>
<?php endif; ?>
03 – cut and paste right BENEATH CODE
code to look for?
get_template_part( ‘loop’, ‘author’ );
?>
04- It should be above the following code
</div><!– #content –>
</div><!– #container –>
That’s it!
