Skip to content

Instantly share code, notes, and snippets.

@nickhempsey
Created January 21, 2011 18:18
Show Gist options
  • Save nickhempsey/790121 to your computer and use it in GitHub Desktop.
Save nickhempsey/790121 to your computer and use it in GitHub Desktop.
custom avatar for WP
// Add custom Avatar
add_filter( 'avatar_defaults', 'newgravatar' );
function newgravatar ($avatar_defaults) {
$myavatar = get_bloginfo('stylesheet_directory').'/images/IMAGENAME.png';
$avatar_defaults[$myavatar] = "AVATAR TITLE";
return $avatar_defaults;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment