After a few different people requested Gravatar support in the comments for the popular Choice WordPress theme, I decided to look into it more carefully. I came across this great post by HackWordPress which gives you a small code snippet to add Gravatars to your comments loop. Since then, I’ve been adding Gravatar support to all the themes here, just because it’s so simple to do. In this guide I’ll show you how exactly I integrate Gravatars into themes.

Before you continue, please understand this is guide is written for WordPress 2.5 and above only. The code gone over will not work in previous versions.

The Gravatar Code

Just plopping in the following code in your comments loop will work, but it probably won’t look very good as-is.
<?php if(function_exists('get_avatar')) { echo get_avatar($comment, '50'); } ?>

Basically this code will check to see if you have the get_avatar (native to WordPress 2.5), then display the avatar of the commenter in a 50px square.

Use a Ruler

If you want to make sure your Gravatars are at a suitable size, I recommend the MeasureIt Firefox extension. This will help you measure out an area in your theme to determine a good size for Gravatars.

Where to put the code?

In the Choice theme, I found that 40 was a good size. So where did I put this code exactly?

Choice Gravatar Location

Anywhere within the foreach and endforeach (the comments loop) will work.

Styling your Gravatars

Once you have Gravatars displayed on your comments template, you’ll probably want to style them too. You’ll notice the Gravatar code spits out the “avatar” class on each image. Let’s add a line to the CSS stylesheet to float this to the left, and add a small right margin.

img.avatar {float:left; margin-right:5px;}

There you go, you have nice looking, perfectly sized, styled Gravatars. Of course themes will differ, you can style them however you like.

Conclusion

Remember, this code will only work on WordPress 2.5 and above. The function_exists conditional tag will cause your theme not to break, but nothing will show up in previous versions. More information on other methods of using Gravatars are detailed on the WordPress Codex.

If you just read this whole article and have no clue what a Gravatar is, I suggest you read this one first by Lorelle on WordPress. It goes over the basics of how to get your own Gravatar by signing up at Gravatar.com as well as using Gravatars on older versions of WordPress with plugins.

Not only can Gravatars be used for comments, but they can also be added to author’s individual posts as well.

If you enjoyed the article feel free to comment and share. I’d like to hear your thoughts. Subscribe to the feed for the latest Theme Lab updates.

Subscribe to RSS

By: Leland on May. 9

Bookmark and Share

55 Comments »

Comment by Banago Subscribed to comments via email
2008-05-09 12:38:46

I have implemented gravatars at the theme of my blog. In fact I was about to ask for a feedback about my new design. I would love your feedback. Thanks!

 
Comment by Leland
2008-05-09 12:55:57

@Banago: Nice, I like it. Thanks for commenting.

 
Comment by Kyle Eslick
2008-05-09 14:13:03

Great post Leland!

I’m a huge supporter of Gravatars, so I love seeing more theme designers add built-in Gravatar support.

Like you said, it really is that easy to do!

 
Comment by mayooresan Subscribed to comments via email
2008-05-10 01:26:35

Thanks for the tips…
Hope to enable in my theme verysoon….
some themes now coming with buid-in gravatar support such as mistylook! :)

 
Comment by Banago Subscribed to comments via email
2008-05-10 12:08:32

@Leland: Thanks for your feedback, I really appreciate that. I would love it if you posted a commet at my blog as not everybody had done so :(

Second: When do you intend to implement gravatars at your blog? :)

 
Comment by Leland
2008-05-11 19:43:42

@Banago, left you a comment on your blog. :)

About Gravatars on Theme Lab, I’ll add those soon enough.

 
Comment by Banago Subscribed to comments via email
2008-05-12 10:53:57

@Leland: Thanks for the comment, it was very nice of you.

 
Comment by Banago
2008-05-17 11:37:39

Oh, that is good, you implemented gr avatars. They look good.

 
Comment by bienB
2008-06-01 06:32:15

Muchas gracias por el articulo.

 
Comment by shunichirou
2008-06-03 04:02:03

wow, thanks for the tutorial :D

i was wandering the net for this, thanks

 
2008-06-19 07:55:38

Thanks for the help!

 
Comment by vegas
2008-06-22 10:53:01

Thanks!

 
Comment by Pauline
2008-07-01 01:32:34

Thank you! You explained it very easily.

 
Comment by Revital
2008-07-01 08:22:09

Thanks a lot. I tried some other codes offered around the web, this one was the one that worked exactly as I needed!

Thanks!!!

 
Comment by eTomyam
2008-07-07 09:25:10

interesting, I’m facing the gravatar issues right now, it fixed well in my mozilla browser but turn ugly on IE7..

 
Comment by Spencer
2008-07-27 21:20:16

This might be kind of anal, but those who are copying and pasting code that you have posted, could you add the background:#fff; to your div.post within your css? If you try highlighting the code the way that it is now, it’s hard to tell what you’re highlighting because you haven’t declared a background on it. Anyways, it might make things easier for your users…

Thanks!

 
Comment by Leland
2008-07-27 21:30:20

@Spencer: You know…that’s actually been bothering me for the longest time and I had no idea what the problem was. I just added the background CSS to the .post class and .head class. Thanks for the tip.

@eTomyam: Hmm…is this a Gravatar issue or a styling issue?

Thanks for the comments everyone, glad you all liked the tutorial.

 
Comment by Prashant
2008-08-01 01:29:08

Hi,

I have added gravatar to my comment list from ur great trick, Really its very simple. The same code is given http://hackwordpress.com/wordpress-25-how-to-add-gravatar-to-your-wordpress-theme/ here also but its difficult caz i d’t know where to post the code, BUT YOUR POST TELL EVERTHING CLEARLY.

But still i am facing a problem. I also wantto display gravatar in the sidebar “Recent Comments” section, so please tell me to do so, which file i need to edit. I am using wordpress 2.6

Thanks,
Prashant

 
Comment by Khal3d
2008-08-19 14:43:49

thank you :)

 
Comment by tejo
2008-08-28 10:08:40

hmm… finally I know what “The WordPress” loop is! I’ve searched for theloop.php <- LOL

 
Comment by Rob
2008-08-31 17:23:25

Thank for the help. I made some changes to my site the other day, and noticed…where the heck are my gravatars? Had to figure out how to put back on. The best help was including the css info.

 
Comment by testercraft
2008-10-14 23:23:15

i have installer the gravatar and it is functioning well on my comment page..but how do i show the avatar on my recent comments on the sidebar?

 
Comment by Leland
2008-10-16 12:06:00

@testercraft: I found this plugin that may be what you’re looking for: Gravatar Recent Comment

 
Comment by Thin king man
2008-11-24 23:38:32

That was super helpful, bro. I’ve spent the last two days trying to figure this out. Wordpress couldn’t answer my question; neither could Gravatar. But you did. Thank you.

 
Comment by Raymond Burton
2009-01-05 18:23:47

Sweet! I’ve been hacking away at a theme for a long time and this was the finishing touch. Thank you so much!

 
Comment by Andrew Miller
2009-01-06 22:17:12

Thanks for the tips. The Gravatar site didn’t explain it clearly enough, but your screenshot made it clear. Cheers.

 
Comment by Henning Nielsen
2009-01-23 03:54:42

Just what I was looking for :) Great explanation with “Where to put the code” and “Styling your Gravatars” - Thanks

 
Comment by oussama
2009-02-25 08:49:44

thanks a lot

 
Comment by BFalcon
2009-02-26 17:42:05

thank you

 
Comment by joreel
2009-02-27 00:16:22

Thanks…I’ll implement it in my BLOG

 
Comment by Mark
2009-03-16 12:17:14

The code works to get the avatars in the comments. I’m having trouble with alignment in IE7.

In IE7, the first avatar aligns correctly, then avatars in subsequent comments are indented to the right by a couple of pixels.

 
Comment by TAG
2009-03-23 22:08:38

I am so glad I found your site. Great information on how to get to add a Gravatar to ones site. I wasted hours trying to play with a plugin and it took me just seconds following your examples to get what I wanted for the site.

Thank you so much! I only wished I had googled you earlier :-)

 
Comment by Jenny
2009-04-03 10:44:37

great!! glad i found this. now to find a way to reset my comments so they all have gravatars next to them.

 
Comment by Peter
2009-04-14 12:54:32

Thanks so much for this post. After reading this, it took me about 4 minutes to follow your instructions and get them working on my site.

You rock!

 
Comment by Dario Gutierez
2009-05-19 09:58:35

Really effective, I was looking for this. Thanks.

 
Comment by Alejandro Subscribed to comments via email
2009-05-23 11:00:02

Hi man, the post is awesome. But my problem is to asociate the gravatar image to an author image in my index.php Wordpress blog. I don’t know the correct sintaxis to do this. Have you any sugerence? Thanks a lot!!!

 
Comment by Leland
 
Name (required)
E-mail (required - never shown publicly)
URI
Subscribe to comments via email
Your Comment (smaller size | larger size)
You may use <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong> in your comment.

Trackback responses to this post

Recent Comments

  • Anto: Hello. Thanks, you’ve got my contact details. Get in touch with me if your wanting something in your own...
  • Sonny: Hey Anto, I love this design, good work that I paid for link removal :) Anyways, how can one contact you to do...
  • Leland: @axelk: As in picture uploads? Not sure about that, although you could set up the form to allow users to send...
  • axelk: thank you for the reply. can Contact 7 be used to submit pictures as well?
  • Leland: @axelk: I think that’s what the Contact Form 7 is for. Although if you wanted to allow users to submit...

About The Author

Welcome to Theme Lab. My name is Leland, and I run the place. I write all the tutorials and code all the themes you see here on the site.

For more information about me, feel free to read the about page. If you want to drop me a message, feel free to contact me.

Interested in advertising on Theme Lab? We have advertising available at very reasonable rates. Head on over to the advertising page for further details.

Please read our Privacy Policy and Terms of Service in regards to theme usage.

© 2009 - Theme Lab - Powered by WordPress