Modify the Comment Gravatar Size in Genesis
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//* 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