Skip to content

Instantly share code, notes, and snippets.

@authentikHQ
Created October 29, 2018 13:53
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 authentikHQ/5d04fe15cac85aca29e0ae3523aebde4 to your computer and use it in GitHub Desktop.
Save authentikHQ/5d04fe15cac85aca29e0ae3523aebde4 to your computer and use it in GitHub Desktop.
Customize author box Gravatar size with the Genesis Framework.
<?php
// Do NOT include the opening php tag.
// Modify Gravatar size in author box.
add_filter( 'genesis_author_box_gravatar_size', 'athk_author_box_gravatar' );
function athk_author_box_gravatar( $size ) {
return '96';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment