Skip to content

Instantly share code, notes, and snippets.

@cdils
Last active December 28, 2015 17:19
Show Gist options
  • Save cdils/7534905 to your computer and use it in GitHub Desktop.
Save cdils/7534905 to your computer and use it in GitHub Desktop.
Replace the default "snowman" avatar with a custom image. Code lifted from this post -> http://www.bourncreative.com/how-to-create-a-custom-default-avatar-for-wordpress
<?php //Remove opening tag
function add_custom_gravatar( $avatar_defaults ) {
$myavatar = get_stylesheet_directory_uri() . '/images/custom-gravatar.jpg';
$avatar_defaults[$myavatar] = "Custom Gravatar";
return $avatar_defaults;
}
add_filter( 'avatar_defaults', 'add_custom_gravatar' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment