Skip to content

Instantly share code, notes, and snippets.

@JiveDig
Forked from GaryJones/functions.php
Last active August 29, 2015 14:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JiveDig/981b3a6dc52790ae9fa2 to your computer and use it in GitHub Desktop.
Save JiveDig/981b3a6dc52790ae9fa2 to your computer and use it in GitHub Desktop.
Change size of comment avatars in Genesis
<?php
/**
* Change size of comment avatars.
*/
add_filter( 'genesis_comment_list_args', 'childtheme_comment_list_args' );
function childtheme_comment_list_args( $args ) {
$args['avatar_size'] = 90;
return $args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment