Skip to content

Instantly share code, notes, and snippets.

@16am
Last active November 27, 2020 00:27
Show Gist options
  • Save 16am/6564251 to your computer and use it in GitHub Desktop.
Save 16am/6564251 to your computer and use it in GitHub Desktop.
Remove original size image from WordPress Upload Directory after upload
add_filter( 'wp_generate_attachment_metadata', 'delete_fullsize_image' );
function delete_fullsize_image( $metadata )
{
$upload_dir = wp_upload_dir();
$full_image_path = trailingslashit( $upload_dir['basedir'] ) . $metadata['file'];
$deleted = unlink( $full_image_path );
return $metadata;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment