Created
August 1, 2017 08:52
-
-
Save ThemeMetric/c847f6e184528b0394eb3b81fe9d6adf to your computer and use it in GitHub Desktop.
Change the Default Gravatar on WordPress
This file contains 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
add_filter( 'avatar_defaults', 'wpb_new_gravatar' ); | |
function wpb_new_gravatar ($avatar_defaults) { | |
$myavatar = 'http://example.com/wp-content/uploads/2017/01/wpb-default-gravatar.png'; | |
$avatar_defaults[$myavatar] = "Default Gravatar"; | |
return $avatar_defaults; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment