Skip to content

Instantly share code, notes, and snippets.

@marcbacon
Last active August 29, 2015 14:26
Show Gist options
  • Select an option

  • Save marcbacon/7fbf8492571a43b17bc1 to your computer and use it in GitHub Desktop.

Select an option

Save marcbacon/7fbf8492571a43b17bc1 to your computer and use it in GitHub Desktop.
Force perfect .jpg images in WordPress, remove compression.
/*
-- 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