Skip to content

Instantly share code, notes, and snippets.

@benpearson
Created January 9, 2025 04:28
Show Gist options
  • Save benpearson/1a9ddeb9463f06b1c8e4882d7cb3cb87 to your computer and use it in GitHub Desktop.
Save benpearson/1a9ddeb9463f06b1c8e4882d7cb3cb87 to your computer and use it in GitHub Desktop.
Wordpress: Filter the image sizes automatically generated when uploading an image
// Filter the image sizes automatically generated when uploading an image.
function dt_remove_default_image_sizes($sizes)
{
unset($sizes['thumbnail']);
// unset( $sizes['medium']); // medium image size is used by WP Media Library for thumbnails
unset($sizes['medium_large']);
unset($sizes['large']);
return $sizes;
}
// add_filter( 'intermediate_image_sizes_advanced', 'dt_remove_default_image_sizes' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment