Skip to content

Instantly share code, notes, and snippets.

@jasonbraun
Last active April 11, 2017 19:31
Show Gist options
  • Save jasonbraun/5247c31732dac9d7b9b2d8e91ad592da to your computer and use it in GitHub Desktop.
Save jasonbraun/5247c31732dac9d7b9b2d8e91ad592da to your computer and use it in GitHub Desktop.
Prevent WordPress from compressing images
<?php
//* Prevent WordPress from compressing images
add_filter( 'jpeg_quality', create_function( '', 'return 100;' ) );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment