Skip to content

Instantly share code, notes, and snippets.

@kraftbj
Last active August 3, 2016 18:48
Show Gist options
  • Save kraftbj/93ccf77a47e36fe70e54b8fc6bb2f70b to your computer and use it in GitHub Desktop.
Save kraftbj/93ccf77a47e36fe70e54b8fc6bb2f70b to your computer and use it in GitHub Desktop.
Force all Photon images to highest quality
<?php // do not include this line.
add_filter( 'jetpack_photon_pre_args', 'bk_always_high_quality' );
function bk_always_high_quality( $args ){
$args['quality'] = 100;
return $args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment