Keep WordPress from Compressing JPGs
<?php
add_filter('jpeg_quality', function($arg){return 100;});
?>
Instructions:
Place the snippet in WordPress functions.php file and you’re done!
<?php
add_filter('jpeg_quality', function($arg){return 100;});
?>
Place the snippet in WordPress functions.php file and you’re done!
If you like this snippet, share it with friends!