mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
https://make.wordpress.org/core/2021/06/28/miscellaneous-developer-focused-changes-in-wordpress-5-8/
6 lines
214 B
Text
6 lines
214 B
Text
function mysite_wp_image_editor_output_format( $formats ) {
|
|
$formats['image/jpg'] = 'image/webp';
|
|
|
|
return $formats;
|
|
}
|
|
add_filter( 'wp_image_editor_output_format', 'mysite_wp_image_editor_output_format' );
|