Skip to content

Instantly share code, notes, and snippets.

@topleague
Created July 1, 2017 03:30
Show Gist options
  • Save topleague/3d13c6476a57912b90f022da4c44077d to your computer and use it in GitHub Desktop.
Save topleague/3d13c6476a57912b90f022da4c44077d to your computer and use it in GitHub Desktop.
Author Gravatar in Post Info in Genesis
// Display Author Gravatar in Post Info in Genesis
@link https://wpsites.net/web-design/display-post-author-avatar-byline/
add_action('genesis_entry_header', 'topleague_post_author_avatar');
function topleague_post_author_avatar() {
if (is_single() ) {
echo get_avatar(get_the_author_meta('email'), 40); // change the number to increse/decrease gravatar size
}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment