Skip to content

Instantly share code, notes, and snippets.

@stuartduff
Created September 22, 2017 15:32
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save stuartduff/64adfc1664c206bdc04cf5e3c6e15210 to your computer and use it in GitHub Desktop.
Save stuartduff/64adfc1664c206bdc04cf5e3c6e15210 to your computer and use it in GitHub Desktop.
Adjust WordPress jpeg image quality
function sd_regenerate_thumbnail_quality() {
// increase or decrease from 0 to 100 for a percentage of image quality.
return 100;
}
add_filter( 'jpeg_quality', 'sd_regenerate_thumbnail_quality');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment