Skip to content

Instantly share code, notes, and snippets.

@wpspeak
Last active December 19, 2015 19:09
Show Gist options
  • Select an option

  • Save wpspeak/6004453 to your computer and use it in GitHub Desktop.

Select an option

Save wpspeak/6004453 to your computer and use it in GitHub Desktop.
Change Gravatar Image Size in Comment Section
<?php
// Change Gravatar Image Size in Comment Section
function afn_comment_list_args( $args ) {
return array( 'type' => 'comment', 'avatar_size' => 80, 'callback' => 'genesis_comment_callback' );
}
add_filter( 'genesis_comment_list_args', 'afn_comment_list_args' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment