Created
October 2, 2013 03:59
-
-
Save RhythmShahriar/6788964 to your computer and use it in GitHub Desktop.
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
<?php | |
/**------------------------------------------- | |
* @package WordPress Default Avatar | |
* @link http://rhythmshahriar.com | |
* @author Rhythm <rhy@rhythmshahriar.com> | |
* @copyright Copyright (c) 2013, Rhythm Shahriar | |
-------------------------------------------------*/ | |
//**Custom Gravatar for Custom Themes**/ | |
add_filter( 'avatar_defaults', 'rhythm_custom_gravatar' ); | |
function rhythm_custom_gravatar ($avatar_defaults) { | |
$myavatar = get_bloginfo('template_directory') . '/images/custom-avatar.png'; // Image location, It's in your stylesheet image directory | |
$avatar_defaults[$myavatar] = "Rhythm"; // Name of your Avatar | |
return $avatar_defaults; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment