Skip to content

Instantly share code, notes, and snippets.

@northernbellediaries
Last active August 29, 2015 14:01
Show Gist options
  • Save northernbellediaries/c465f7e554d4684d04be to your computer and use it in GitHub Desktop.
Save northernbellediaries/c465f7e554d4684d04be to your computer and use it in GitHub Desktop.
Custom Gravatar
<?php
//* Do NOT include the opening php tag
//* Create a custom Gravatar
add_filter( 'avatar_defaults', 'custom_gravatar' );
function custom_gravatar ($avatar) {
$custom_avatar = get_stylesheet_directory_uri() . '/images/gravatar.jpg';
$avatar[$custom_avatar] = "Custom Gravatar";
return $avatar;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment