Disable the auto generated 1980px size image in WordPress TwentyTwenty
-
I just started using theme Twenty Twenty and I think perhaps this theme is creating an image that is 1980 pixels wide every time I upload an image. I have disabled all the other sizes in functions PHP but the 1980 image size is still being generated. Can anyone help me here? I must disable this before launching my site.
function remove_default_image_sizes( $sizes) { unset( $sizes['1536x1536']); unset( $sizes['1980x1980']); unset( $sizes['2048x2048']); return $sizes; } add_filter('intermediate_image_sizes_advanced', 'remove_default_image_sizes');
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Disable the auto generated 1980px size image in WordPress TwentyTwenty’ is closed to new replies.