Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save jayshreehcl/5746107 to your computer and use it in GitHub Desktop.
Save jayshreehcl/5746107 to your computer and use it in GitHub Desktop.
Copy and paste the code provided below to add custom default avatar in wordpress. The code provided below is only for genesis theme users. For ore details please kindly read the article at : http://blogvkp.com/how-to-add-custom-default-avatar
//***Adding Custom Default Avatar In Wordpress**/
add_filter( 'avatar_defaults', 'blogvkp_custom_gravatar' );
function blogvkp_custom_gravatar ($avatar_defaults) {
$myavatar = get_stylesheet_directory_uri() . '/images/custom-gravatar.jpg';
$avatar_defaults[$myavatar] = "Custom Gravatar";
return $avatar_defaults;
}
@jayshreehcl
Copy link
Author

For more details in this article; read further at : How To Add Custom Default Avatars In Wordpress

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment