Skip to content

Instantly share code, notes, and snippets.

@wpspeak
Created July 15, 2013 23:28
Show Gist options
  • Select an option

  • Save wpspeak/6004429 to your computer and use it in GitHub Desktop.

Select an option

Save wpspeak/6004429 to your computer and use it in GitHub Desktop.
Modify the size of the Gravatar in the author box
<?php
// Modify the size of the Gravatar in the author box
add_filter( 'genesis_author_box_gravatar_size', 'afn_author_box_gravatar_size' );
function afn_author_box_gravatar_size($size) {
return '80';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment