Skip to content

Instantly share code, notes, and snippets.

@mikeoberdick
Created February 11, 2023 12:17
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 mikeoberdick/0ca209b94f8dcd5fb0df239884e52f15 to your computer and use it in GitHub Desktop.
Save mikeoberdick/0ca209b94f8dcd5fb0df239884e52f15 to your computer and use it in GitHub Desktop.
Automatically convert wordpress thumbs to .webp format when thumbnails are generated including custom thumbs
function psc_image_editor_output_format( $formats ) {
$formats['image/png'] = 'image/webp';
return $formats;
}
add_filter( 'image_editor_output_format', 'psc_image_editor_output_format' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment