-
-
Save JiveDig/981b3a6dc52790ae9fa2 to your computer and use it in GitHub Desktop.
Change size of comment avatars in Genesis
This file contains hidden or 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
<?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