After updating to WordPress 4.5 I was doing a media upload test and I noticed that I was generating a new image size that I cannot figure out how to stop.
The current function I am using to prevent generating multiple sizes of my media is:
function add_image_insert_override( $sizes ) {
unset( $sizes[ 'thumbnail' ]);
unset( $sizes[ 'medium' ]);
unset( $sizes[ 'large' ]);
unset( $sizes[ 'full' ] );
return $sizes;
}
add_filter( 'intermediate_image_sizes_advanced', 'add_image_insert_override' );
How can I stop WordPress 4.5 from generating images with a width of 768px?
I didn’t find this anywhere other than the article I referenced under Responsive Images in WordPress 4.4 when they indicated that a new image size had been created:
After reading this article I was then able to update my function to:
Now when I add media to a post I am no longer generating
foobar-768xwhatever
. Hope this helps the next person.