Skip to content

Instantly share code, notes, and snippets.

@wpspeak
Created June 19, 2013 07:04
Show Gist options
  • Save wpspeak/5812201 to your computer and use it in GitHub Desktop.
Save wpspeak/5812201 to your computer and use it in GitHub Desktop.
Modify the size of the Gravatar in the entry comments
<?php
// Modify the size of the Gravatar in the entry comments
add_filter( 'genesis_comment_list_args', 'custom_comments_gravatar' );
function custom_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