Skip to content

Instantly share code, notes, and snippets.

@bouveng
Created April 15, 2020 16:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bouveng/54996e0048bcc4b4b093e45eed36b471 to your computer and use it in GitHub Desktop.
Save bouveng/54996e0048bcc4b4b093e45eed36b471 to your computer and use it in GitHub Desktop.
add webp mime to wp
add_filter( 'upload_mimes', 'add_webp', 1, 1 );
function add_webp( $mime_types ) {
$mime_types['webp'] = 'image/webp';
return $mime_types;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment