Simple Way , How to enable gravatar in wordpress blogs?
Tuesday, November 18th, 20081. Go to /wp-content/themes/themename and open comments.php . 2. Find < ?php comment_text() ?> or comment_text() in comments.php and add the following code before that. <?php if ( !empty( $comment->comment_author_email ) ) { $md5 = md5( $comment->comment_author_email ); $default = urlencode( 'http://www.gravatar.com/avatar/ad516503a11cd5ca435acc9bb6523536?s=60' ); echo "<img style='float: right; margin-left: 10px;' src='http://www.gravatar.com/avatar.php?gravatar_id=$md5&size=60&default=$default' alt='' />";} ?> This methode, taken from : ...
Balikpapan Blogger