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/5373941 to your computer and use it in GitHub Desktop.
Save braddalton/5373941 to your computer and use it in GitHub Desktop.
add_action('genesis_entry_header', 'wpsites_single_post_author_avatars');
/**
* @author Brad Dalton
* @example http://wpsites.net/web-design/display-post-author-avatar-byline/
* @copyright 2014 WP Sites
*/
function wpsites_single_post_author_avatars() {
if (is_single() ) {
echo get_avatar(get_the_author_meta('email'), 30);
}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment