Skip to content

Instantly share code, notes, and snippets.

@fovoc
Forked from UmeshSingla/exclude_original.php
Created September 14, 2016 13:01
Show Gist options
  • Save fovoc/60cd64ffd31fce919563b67096f5162c to your computer and use it in GitHub Desktop.
Save fovoc/60cd64ffd31fce919563b67096f5162c to your computer and use it in GitHub Desktop.
Skip a Original size image from Smushing
add_filter('wp_smush_media_image', 'smush_skip_original_image', '', 2 );
function smush_skip_original_image( $skip, $image_size ) {
if( 'full' == $image_size ) {
return false;
}
return $skip;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment