Skip to content

Instantly share code, notes, and snippets.

@wpspeak
Created June 19, 2013 07:01
Show Gist options
  • Save wpspeak/5812184 to your computer and use it in GitHub Desktop.
Save wpspeak/5812184 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', 'new_author_box_gravatar_size' );
function new_author_box_gravatar_size( $size ) {
return '96';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment