Skip to content

Instantly share code, notes, and snippets.

@ohdesigner
Created April 5, 2016 12:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ohdesigner/fe9abcfab09fdf0a1366ece0e94be472 to your computer and use it in GitHub Desktop.
Save ohdesigner/fe9abcfab09fdf0a1366ece0e94be472 to your computer and use it in GitHub Desktop.
WordPress Genesis Add About the Author, Author Biography http://www.ohdesigner.com/add-about-the-author-wordpress-genesis/
function add_author_bio() {
if ( !is_singular( array( 'post', 'page' ) )) return;
{ ?>
<div class="postauthor">
<?php echo get_avatar( get_the_author_id() , 120 ); ?>
<h4>About the Author</h4>
<p><?php the_author_description(); ?></p>
</div>
<?php }
}
add_action('genesis_entry_footer', 'add_author_bio', 2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment