Skip to content

Instantly share code, notes, and snippets.

@saivarunk
Created February 7, 2016 08:13
Show Gist options
  • Save saivarunk/ca42947a4dab7eae3116 to your computer and use it in GitHub Desktop.
Save saivarunk/ca42947a4dab7eae3116 to your computer and use it in GitHub Desktop.
//* Modify the size of the Gravatar in the author box
add_filter( 'genesis_author_box_gravatar_size', 'author_box_gravatar_size' );
function 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