Last active
August 3, 2016 18:48
-
-
Save kraftbj/93ccf77a47e36fe70e54b8fc6bb2f70b to your computer and use it in GitHub Desktop.
Force all Photon images to highest quality
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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