Return the original image quality if using Jetpack Image CDN on your site.
Snippet Type
Execute on Child Sites
Snippet
function jp_custom_params( $args ) {
$args['quality'] = 100;
return $args;
}
add_filter( 'jetpack_photon_pre_args', 'jp_custom_params' );