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
246 B
Text
8 lines
246 B
Text
// Use a quality setting of 75 for AVIF images.
|
|
function filter_avif_quality( $quality, $mime_type ) {
|
|
if ( 'image/avif' === $mime_type ) {
|
|
return 75;
|
|
}
|
|
return $quality;
|
|
}
|
|
add_filter( 'wp_editor_set_quality', 'filter_avif_quality', 10, 2 );
|