Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save ohbob/dd566d60bd82fe51781b83de5b69cb23 to your computer and use it in GitHub Desktop.

Select an option

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
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