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?
The Geek Who Understands You
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?
Begin typing your search term above and press enter to search. Press ESC to cancel.
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);
?>