Skip to content

Instantly share code, notes, and snippets.

@topleague
Last active June 28, 2017 08:59
Embed
What would you like to do?
Modify the Comment Gravatar Size in Genesis
//* Modify the size of the Gravatar in comments
add_filter( 'genesis_comment_list_args', 'topleague_comments_gravatar' );
function topleague_comments_gravatar( $args ) {
$args['avatar_size'] = 96; // change the number depending on your requirement
return $args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment