Can images be automatically compressed?

Use http://wordpress.org/extend/plugins/auto-image-resizer/

Add this to your functions.php:

function prune_image_sizes($sizes) {
// You can add other size like that for remove those sizes
//  unset($sizes['medium']);
    unset($sizes['large']);

    return $sizes;
}
add_filter('intermediate_image_sizes_advanced', 'prune_image_sizes');

Set your large image option to 800px in media options panel.

So what did you do? System will not create large size of image but will reduce original image size to large size ( 800px ) option. Most of developer dont like it but when client have to upload lots of image and dont have hosting space so much, this will helps.
(Sorry for my english)

Leave a Comment