Skip to content

Instantly share code, notes, and snippets.

@Roy-Oto
Created April 26, 2021 03:38
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 Roy-Oto/cdd6be28eab44fd3d35b9049402a6489 to your computer and use it in GitHub Desktop.
Save Roy-Oto/cdd6be28eab44fd3d35b9049402a6489 to your computer and use it in GitHub Desktop.
This is a php file to load WebP into WordPress.
function custom_mime_types( $mimes ) {
$mimes['webp'] = 'image/webp';
return $mimes;
}
add_filter( 'upload_mimes', 'custom_mime_types' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment