Last active
August 29, 2015 14:26
-
-
Save marcbacon/7fbf8492571a43b17bc1 to your computer and use it in GitHub Desktop.
Force perfect .jpg images in WordPress, remove compression.
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
| /* | |
| -- Add to a plugin or functions.php | |
| */ | |
| add_filter( 'jpg_quality', 'high_jpg_quality' ); | |
| function high_jpg_quality() { | |
| return 100; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment