Created
July 18, 2020 21:26
-
-
Save kabbo508/2d4f31d6fe0c281728ec71374c6f638b to your computer and use it in GitHub Desktop.
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
//** *Enable upload for webp image files.*/ | |
function webp_upload_mimes($existing_mimes) { | |
$existing_mimes['webp'] = 'image/webp'; | |
return $existing_mimes; | |
} | |
add_filter('mime_types', 'webp_upload_mimes'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment