mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
8 lines
252 B
Text
8 lines
252 B
Text
// Use a quality setting of 90 for WebP images.
|
|
function filter_webp_quality( $quality, $mime_type ) {
|
|
if ( 'image/webp' === $mime_type ) {
|
|
return 90;
|
|
}
|
|
return $quality;
|
|
}
|
|
add_filter( 'wp_editor_set_quality', 'filter_webp_quality', 10, 2 );
|