Skip to content

Instantly share code, notes, and snippets.

@RhythmShahriar
Created October 2, 2013 03:59
Show Gist options
  • Save RhythmShahriar/6788964 to your computer and use it in GitHub Desktop.
Save RhythmShahriar/6788964 to your computer and use it in GitHub Desktop.
<?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