Tag Archives: Author Archive

WordPress: Move “Author Archive” Bio to Bottom of page?


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 Continue reading WordPress: Move “Author Archive” Bio to Bottom of page?