Last active
August 29, 2015 14:01
-
-
Save northernbellediaries/c465f7e554d4684d04be to your computer and use it in GitHub Desktop.
Custom Gravatar
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 | |
//* 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