Created
October 4, 2021 11:18
-
-
Save wtmujeebu/0d894fa6b7c5b6d9f5ba5d5e8ba359b8 to your computer and use it in GitHub Desktop.
webp image support for Product Import Export for WooCommerce plugin by WebToffee
This file contains hidden or 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
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