Created
October 2, 2013 03:49
-
-
Save RhythmShahriar/6788904 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 <[email protected]> | |
* @copyright Copyright (c) 2013, Rhythm Shahriar | |
-------------------------------------------------*/ | |
// Create a custom Gravatar | |
function rhythm_default_avatar( $avatars ) { | |
$new = get_stylesheet_directory_uri() . '/images/rhythm-custom-avatar.png'; //Image location, it's in your stylesheet images directory | |
$avatars[$new] = "Rhythm"; // Name of your Avatar | |
return $avatars; | |
} | |
add_filter( 'avatar_defaults', 'rhythm_default_avatar' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment