Quick Online Tips
About     Contact
Blogging       Tutorials       Google       SEO       Facebook       Twitter       Apple       Computers       Security       Videos       Downloads

How to Add Gravatars to WordPress Themes

Add Gravatars to your WordPress theme. Gravatars are a quick way to add a personal touch to your blog comments by displaying the avatar of the commenter alongside their comment. The latest WordPress versions incorporate Gravatar support by default (you don’t need a plugin anymore!). This article will show you how to add gravatars / avatars to your wordpress theme in a few minutes.

Show Avatars in WordPress

First you need to enable your wordpress theme to display avatars. Afer logging into WordPress admin, go to Settings > Discussion and for the Avatars.

Add Gravatars to WordPress Theme

Then you will have to set the php code in your comments.php in the appropriate area where you want the avatars to appear (usually after the individual comments li tags). Add this code there.

<?php if(function_exists('get_avatar')) { echo get_avatar($comment, '40'); } ?>

If gravatars are enabled from your WordPress Admin settings, then this code will show avatars or will disappear. The “40″ signifies a avatar size of 40px by 40px square, you can edit this to suit the size of your theme template.

How to style the Gravatar?

You basically need to style the .avatar class displayed by the php code. Try some css examples below and edit it to blend with your blog design.

#comments .avatar {
float: left;
margin: 0;
padding: 0 4px 0 0;
}

or the position can be fixed to the top-left of the individual comments.

#comments .avatar {
position: absolute;
top: 1px;
left :1px;
}

You can also use img .avatar to style the tags. Using different CSS styles, you can position or align avatars wherever you like.

Optimizing Blank Avatars

Not all your commenters would have signed up for Gravatars. So what do you do with the blank avatar spaces? Showing the default mystery man or gravatar logo is not a good idea.

Instead you can opt to display Identicons, Wavatars and MonsterID to get some automated visually appealing avatars. This will automatically generate some cool avatars for all your comments. I personally like the Wavatar.

Hide NSFW / Adult Avatars

Gravatars are rated and you can opt to show family safe gravatars on your site only from the Avatar settings

Well that’s it. Your blog theme is now gravatar enabled.

Get a Gravatar - If you don’t have a gravatar already, Sign up for it today. With so many blogs supporting gravatars, it will give your comment better visibility. Get the new version of QuickPress theme, now supporting Gravatars.



23 Responses

  1. Thanks! These things are pretty cool!

    Sean posted on 02/08/2008
  2. Wow, that was easy. Thanks! I’d been putting off implementing gravatars onto my site until I saw this quick tutorial :D

    Peter posted on 02/08/2008
  3. One other comment though… why don’t you use gravatars on this site?!?

    Peter posted on 02/08/2008
  4. thnx alot for the share. i never knew this feature for wordpress

    Gravity posted on 03/08/2008
  5. Thanks so much for this tut – my theme didn’t have gravatars enabled and I had no idea what code I needed to add them in – and it was so simple too!

    Mrs S | Blue Archipelago posted on 22/08/2008
Twitter   Twitter     RSS Feed readers
Advertisements

Advertise here