Enemy of Entropy
Where are my Gravatars?
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?
4 Comments »




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.
[…] — gravatars — I found the code to modify my theme so these show up automatically, but I heard from Cynthia Armistead that when she upgraded to 2.5.1, hers no longer worked: Where are my Gravatars?. […]
They work again! I had to change the code from
<?php
echo get_avatar( get_comment_author_email() );
?>
to
<?php
echo get_avatar($comment);
?>