We'll create fresh WordPress site with Ravatars installed. You have 20 minutes to test the plugin after that site we'll be deleted.
Ravatars is a plugin that will generate and assign icons to the visitors leaving comments at your site. The icons are based on email,
so a given visitor will get the same icon each time they comment. It is easy to customize the avatars so that they match your site’s topic or theme. It also makes comment threads easier to follow when people have memorable “faces.”
This plugin is based on Shamus Young’s Wavatars plugin.
And a shout out to Gregory Weir for bugfixes. Thanks!
Features:
Image manipulation functions are very memory intensive. If you get a memory error, try reducing the size of your source images by lowering the resolution or cropping them into smaller parts. You can also increase PHP’s memory_limit.
If you place Ravatars by calling ravatar_show () manually, note that you can also specify an optional “size” argument to override the
default. For example:
ravatar_show($comment->comment_author_email, '160');
This would cause the Ravatar to be 160×160 pixels, even if the default was set to some other value. You could do this to make admin icons
larger, for example.
If ravatar_show () STILL doesn’t give you enough control, you can call:
ravatar_get(email, size);
And it will return the URL to the created image without writing anything to the page.
Put this code in your theme:
for ($i = 0; $i < 100; $i++)
ravatar_show ($i);
It will generate a field of 100 random ravatars, which is cool. This is how I generated the ravatar screenshot. It’s also a great way to quickly
test your source images.