Last active
March 4, 2022 11:14
-
-
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/)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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