Image media is creating a new image size of 768px but how do I stop it? Image media is creating a new image size of 768px but how do I stop it? wordpress wordpress

Image media is creating a new image size of 768px but how do I stop it?


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:

A new default intermediate size, medium_large, has been added to better take advantage of responsive image support. The new size is 768px wide by default, with no height limit, and can be used like any other size available in WordPress. As it is a standard size, it will only be generated when new images are uploaded or sizes are regenerated with third party plugins.

After reading this article I was then able to update my function to:

function add_image_insert_override( $sizes ){    unset( $sizes[ 'thumbnail' ]);    unset( $sizes[ 'medium' ]);    unset( $sizes[ 'medium_large' ] );    unset( $sizes[ 'large' ]);    unset( $sizes[ 'full' ] );    return $sizes;}add_filter( 'intermediate_image_sizes_advanced', 'add_image_insert_override' );

Now when I add media to a post I am no longer generating foobar-768xwhatever. Hope this helps the next person.