Gravatar is a globally recognized avatar that can be associated with your email address. It is an image that follows you from site to site appearing beside your name when you do things like comment or post on a blog. In WordPress, Gravatar is a common feature that allows users to display their profile picture on their blog or website. In this article, we will discuss how to display Gravatar from user email in WordPress.
Here are the steps on how to Display Gravatar from User Email in WordPress:
Create a Gravatar Account
Before we start, you need to create a Gravatar account. To create an account, go to Gravatar.com and sign up for a new account. Once you create an account, you can upload your profile picture, which will be associated with your email address.

Add Gravatar Code to WordPress Theme
To display Gravatar from user email in WordPress, you need to add some code to your WordPress theme. You can add the following code to your theme’s functions.php file:
<?php echo get_avatar( $comment, 64 ); ?>
This code will display the Gravatar of the user who left the comment. You can change the size of the Gravatar by changing the number 64 to a different value.
Display Gravatar on WordPress Comments
After adding the code to your WordPress theme, you can display Gravatar on WordPress comments. When a user leaves a comment on your blog, their Gravatar will appear next to their name.
Display Gravatar on WordPress Author Bio
You can also display Gravatar on WordPress author bio. To do this, you need to add the following code to your WordPress theme’s author.php file:
<?php echo get_avatar( get_the_author_meta( 'user_email' ), 64 ); ?>
This code will display the Gravatar of the author on the author bio page. You can change the size of the Gravatar by changing the number 64 to a different value.
Conclusion
In conclusion, Gravatar is a useful feature that allows users to display their profile picture on their blog or website. In this article, we have discussed how to display Gravatar from user email in WordPress. By following the steps mentioned above, you can easily display Gravatar on your WordPress comments and author bio. This will help you to create a more personalized and engaging experience for your readers.
Things To Consider When Displaying Gravatar From User Email In WordPress
Here are some things to consider when displaying Gravatar from user email in WordPress:
Privacy Concerns: Gravatar uses email addresses to identify users and display their profile picture. Some users may prefer not to share their email address or profile picture, so it’s important to respect their privacy and provide an option to opt-out of Gravatar.
Page Load Time: Gravatar images are loaded from a remote server, which can slow down the page load time of your website. To avoid this, you can use a plugin or caching to optimize the loading time of Gravatar images.
Image Quality: Gravatar images are automatically generated based on the user’s email address, which can result in low-quality or distorted images. To ensure high-quality images, users can upload their own profile picture to their Gravatar account.
Compatibility: Gravatar is a widely used feature in WordPress, but some themes or plugins may not support it or may require additional customization. It’s important to test your website to ensure that Gravatar is displaying correctly on all pages.
By considering these factors, you can ensure that Gravatar is used effectively and responsibly on your WordPress website.