disable thumbnails review/question
-
Hello,
I used this code to disable wpadverts thumbnails from generating on every wordpress image uploaded. Is it safe to use or will it have any negative effect.
I really need to save storage space since ill be dealing with lots of images for advert listings.// disable generated image sizes function disable_image_sizes($sizes) { unset($sizes['adverts-gallery']); unset($sizes['adverts-list']); unset($sizes['adverts-upload-thumbnail']); return $sizes; } add_action('intermediate_image_sizes_advanced', 'disable_image_sizes');
Thanks
Viewing 7 replies - 1 through 7 (of 7 total)
Viewing 7 replies - 1 through 7 (of 7 total)
- The topic ‘disable thumbnails review/question’ is closed to new replies.