Skip to content

Instantly share code, notes, and snippets.

@topleague
Created July 6, 2017 14:34
Show Gist options
  • Save topleague/ad0c12d674f96b7b3ac9f5634dc3181a to your computer and use it in GitHub Desktop.
Save topleague/ad0c12d674f96b7b3ac9f5634dc3181a to your computer and use it in GitHub Desktop.
Display Author Avatar above the Entry Title
// Display Author Avatar above Entry Title
add_action('genesis_before_entry', 'topleague_post_author_avatar');
function topleague_post_author_avatar() {
if (is_single() ) {
echo '<div class="entry-avatar">';
echo get_avatar(get_the_author_meta('email'), 110);
echo '</div>';
}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment