Created
November 12, 2012 22:34
-
-
Save benklocek/4062489 to your computer and use it in GitHub Desktop.
Wordpress Functions: Adjust JPEG filter quality
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//set image quality higher | |
function filter_image_quality() { return 100; } | |
add_filter('wp_editor_set_quality','filter_image_quality'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment