Skip to content

Instantly share code, notes, and snippets.

@humbertocastelo
Created October 14, 2017 03:55
Show Gist options
  • Save humbertocastelo/487ec68236d5c23daa90623e048a378f to your computer and use it in GitHub Desktop.
Save humbertocastelo/487ec68236d5c23daa90623e048a378f to your computer and use it in GitHub Desktop.
jpeg_quality 90
<?php
function my_prefix_jpeg_quality( $quality, $context ) {
return 90;
}
add_filter( 'jpeg_quality', 'my_prefix_jpeg_quality', 10, 2 );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment