Skip to content

Instantly share code, notes, and snippets.

@codersantosh
Last active March 10, 2022 12:52
Show Gist options
  • Select an option

  • Save codersantosh/44bc4028b69d7ff7bd81a63eb9425b46 to your computer and use it in GitHub Desktop.

Select an option

Save codersantosh/44bc4028b69d7ff7bd81a63eb9425b46 to your computer and use it in GitHub Desktop.
Only allow original uploaded image and Remove all image sizes generated by WordPress.
/*Remove all image sizes*/
function prefix_remove_image_sizes( $sizes ) {
return array();
}
add_action( 'intermediate_image_sizes_advanced', 'prefix_remove_image_sizes' );
/*Removed scaled image size (-scaled as suffix on image name)*/
add_filter( 'big_image_size_threshold', '__return_false' );
/*Removed rotated image size (-rotated as suffix on image name)*/
add_filter( 'wp_image_maybe_exif_rotate', '__return_false' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment