Guides, Site News, WordPress

Gravatars

17.10.08 | 1 Comment

With the help of BlogOhBlog I integrated gravatars into W2 DnD (version 0.50).

To refresh your memory, Gravatars are little user images from Gravatar.com that are displayed against your comments in the theme (if the theme is built to support Gravatars). A lot of WordPress themes are built without the support of Gravatars. So, here is some help for you to add Gravatars in your theme. Open up your comments.php file from the theme folder. Find this piece of code :-

<?php comment_text() ?>

Replace the above code with the following code :-

<div class="gravs">
<?php if (get_bloginfo('version')>=2.5)
echo get_avatar( $comment->comment_author_email, $size = '50', $comment->comment_author_link);?>
<?php comment_text() ?>
</div>
<br clear="all" />

The above code will display the Gravatars. Now let us add some CSS to the style.css file for your theme.

.gravs {margin-top:20px;}
.avatar {float:left; margin-right:5px; margin-bottom:5px; padding:3px; border:1px solid #999999;}

When you check your theme again, you will see the Gravatar images against your comments.

http://www.blogohblog.com/10-wordpress-hacks-to-make-your-life-easy/

I made a slight change to the CSS code to improve formatting.

.gravs {margin-top:20px;}
.avatar {float:left; margin-right:8px; margin-bottom:8px; padding:3px; border:1px solid #999999;}

Changing the margins from 5 pixels to 8 makes a huge difference. Please note I use DnD version 0.75 comment styling, but it’s a very easy tweak to transfer the necessary lines from the CSS stylesheet into the old 0.50 version. A very nice and simple tutorial from BlogOhBlog.com.

1 Comment

speak up

Add your comment below, or trackback from your own site.
Subscribe to these comments.

Be nice. Keep it clean. Stay on topic. No spam.

You can use these tags:
<a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>

:

:


« Intel i5000 chipset
» My WipEout HD Trophy List
Copyright © 2006-2008 crushed-core. All rights reserved.