Forked from dipaksaraf/gist:c18a5d15b87f97f9a07af5e6d2449ff5
Created
May 25, 2021 05:48
-
-
Save ohbob/dd566d60bd82fe51781b83de5b69cb23 to your computer and use it in GitHub Desktop.
How to Use AVIF: The New Next-Gen Image Compression Format in WordPress
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 cmyee_allowed_mime_types( $mime_types ) { | |
| //AVIF Images | |
| $mime_types['avif'] = 'image/avif'; | |
| return $mime_types; | |
| } | |
| add_filter( 'upload_mimes', 'cmyee_allowed_mime_types', 1, 1 ); | |
| src:https://chrisyee.ca/blog/uploading-avif-images-in-wordpress/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment