Skip to content

Instantly share code, notes, and snippets.

@saivarunk
Created February 7, 2016 08:23
Show Gist options
  • Save saivarunk/8e69e9a4bc7216b38aaf to your computer and use it in GitHub Desktop.
Save saivarunk/8e69e9a4bc7216b38aaf to your computer and use it in GitHub Desktop.
//* Modify the size of the Gravatar in comments
add_filter( 'genesis_comment_list_args', 'sv_comments_gravatar' );
function sv_comments_gravatar( $args ) {
$args['avatar_size'] = 96;
return $args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment