Skip to content

Instantly share code, notes, and snippets.

@Mamaduka
Created April 3, 2014 09:46
Show Gist options
  • Save Mamaduka/9951596 to your computer and use it in GitHub Desktop.
Save Mamaduka/9951596 to your computer and use it in GitHub Desktop.
<?php
/**
* Adjust image quality to 100
*/
function mamaduka_adjust_quality( $image )) {
$image->set_quality(100);
return $image
}
add_filter( 'image_editor_save_pre', 'mamaduka_adjust_quality' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment