Skip to content

Instantly share code, notes, and snippets.

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 braddalton/5698525 to your computer and use it in GitHub Desktop.
Save braddalton/5698525 to your computer and use it in GitHub Desktop.
function latest_post_author_avatars() {
global $wp_query;
if (is_single() || is_home() && 0 === $wp_query->current_post) {
echo get_avatar(get_the_author_id(), 40);
}
}
add_action('genesis_after_post_title', 'latest_post_author_avatars');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment