Skip to content

Instantly share code, notes, and snippets.

@thachpham92
Created December 16, 2013 18:51
Show Gist options
  • Save thachpham92/7992233 to your computer and use it in GitHub Desktop.
Save thachpham92/7992233 to your computer and use it in GitHub Desktop.
Remove WordPress Image Size
function sgr_filter_image_sizes( $sizes) {
unset( $sizes['thumbnail']);
unset( $sizes['medium']);
unset( $sizes['large']);
return $sizes;
}
add_filter('intermediate_image_sizes_advanced', 'sgr_filter_image_sizes');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment