'
',
'after_widget' => '
',
'before_title' => '',
));
function gravatar() {
global $comment;
if (!get_option('show_avatars'))
return;
$rating = get_option('avatar_rating');
$size = 48;
$default = get_bloginfo('template_directory').'/images/comment-gravatar.jpg';
$border = 'D2D4FA';
$out = "http://www.gravatar.com/avatar.php?gravatar_id=".md5(strtolower($comment->comment_author_email));
$out .= "&rating=".$rating;
$out .="&size=".$size;
$out .= "&default=".urlencode($default);
$out .= "&border=".$border;
echo '
';
}
function gravatar_post() {
if (!get_option('show_avatars'))
return;
$rating = get_option('avatar_rating');
$size = 80;
$default = get_bloginfo('template_directory').'/images/author-gravatar.jpg';
$border = 'D2D4FA';
$out = "http://www.gravatar.com/avatar.php?gravatar_id=".md5(strtolower(get_the_author_email()));
$out .= "&rating=".$rating;
$out .="&size=".$size;
$out .= "&default=".urlencode($default);
$out .= "&border=".$border;
echo '
';
}
function commentword() {
$commentwords = array('said','wrote','replied','thought','commented');
echo $commentwords[rand(0,4)];
}
?>