Skip to content

Instantly share code, notes, and snippets.

@webtoffee-git
Last active March 4, 2022 11:14
Show Gist options
  • Save webtoffee-git/01580f3099f84dc911a361d8e44f77a4 to your computer and use it in GitHub Desktop.
Save webtoffee-git/01580f3099f84dc911a361d8e44f77a4 to your computer and use it in GitHub Desktop.
WebP image support - Product Import Export for WooCommerce (https://www.webtoffee.com/product/product-import-export-woocommerce/)
<?php //do not copy this line
function wt_mime_types($mime_types) {
$mime_types['webp'] = 'image/webp'; //Adding webp extension
return $mime_types;
}
add_filter('woocommerce_rest_allowed_image_mime_types', 'wt_mime_types', 1, 1);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment