Display Original Image Quality if Using Jetpack Image CDN

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' );
1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.