Skip to content

Instantly share code, notes, and snippets.

View ohdesigner's full-sized avatar

Jeffrey Michael ohdesigner

View GitHub Profile
@ohdesigner
ohdesigner / functions1.php
Last active April 4, 2016 19:15
Author Bio on Posts and Pages - 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 Jeffrey Michael</h4>
<p><?php the_author_description(); ?></p>
</div>
<?php }
}