Automatically create grayscale thumbnails for a given image size.
Sometimes, your website design requires to turn pictures in black & white : for example in a gallery display, you can have all thumbnails in grayscale and bring up colors when the mouse is hovering it. This plugin will make it possible without the need to manualy create the grayscale variant of each picture.
In your theme's functions.php, instead of using WP add_image_size function, use grayscale_add_image_size('custom_size', xxx, yyy, crop, grayscale). Then, you can use the_post_thumbnail or any thumbnail function to get your grayscale image :
the_post_thumbnail('custom_size-gray')