I obediently updated to WordPress 2.5.1, and lost my Gravatars. I’ve checked the settings, and they’re still enabled. They’re definitely still in my templates, but nobody gets anything but the default “no gravatar” picture. Buh?
Post navigation
4 thoughts on “Where are my Gravatars?”
Comments are closed.
That sucks. I haven’t done that update yet. If you figure out how to get the gravatars back, please post it.
I posted to the WP forums. I’ll let you know when I get it resolved.
They work again! I had to change the code from
<?php
echo get_avatar( get_comment_author_email() );
?>
to
<?php
echo get_avatar($comment);
?>