Stop making extra image sizes
WordPress stops making the 768px, 1536px and 2048px copies of every image you upload. Saves disk space; your theme’s own sizes are still made.
<?php
add_filter(
'intermediate_image_sizes_advanced',
static function ( $sizes ) {
unset( $sizes['medium_large'], $sizes['1536x1536'], $sizes['2048x2048'] );
return $sizes;
}
);
Good to know
Only affects new uploads. Responsive images use the other sizes, so phones and big screens still get a fitting copy.
In these packs
- Images and media: Sharper, lighter images, tidier uploads and a more useful media library.