Skip to content

Instantly share code, notes, and snippets.

@joshuafredrickson
Last active August 29, 2015 13:56
Show Gist options
  • Save joshuafredrickson/9117537 to your computer and use it in GitHub Desktop.
Save joshuafredrickson/9117537 to your computer and use it in GitHub Desktop.
WordPress: Improve jpg quality
// Improve jpg quality
add_filter('jpeg_quality', 'op_jpeg_quality');
function op_jpeg_quality($arg) {
return (int)80; // value between 60-100
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment