Skip to content

Instantly share code, notes, and snippets.

@wtmujeebu
Created October 4, 2021 11:18
Show Gist options
  • Save wtmujeebu/0d894fa6b7c5b6d9f5ba5d5e8ba359b8 to your computer and use it in GitHub Desktop.
Save wtmujeebu/0d894fa6b7c5b6d9f5ba5d5e8ba359b8 to your computer and use it in GitHub Desktop.
webp image support for Product Import Export for WooCommerce plugin by WebToffee
function wt_mime_types($mime_types) {
$mime_types['webp'] = 'image/webp'; //Adding webp extension
return $mime_types;
}
add_filter('upload_mimes', 'wt_mime_types', 1, 1);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment