Skip to content

Instantly share code, notes, and snippets.

@stffndk
Last active August 29, 2015 13:56
Show Gist options
  • Save stffndk/9221709 to your computer and use it in GitHub Desktop.
Save stffndk/9221709 to your computer and use it in GitHub Desktop.
<?php
add_filter( 'jpeg_quality', 'custom_jpeg_quality' );
function custom_jpeg_quality() {
return 100; // Whatever quality you like, 0-100, 100 is better
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment