Skip to content

Instantly share code, notes, and snippets.

@Perun
Last active May 30, 2017 15:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Perun/6678585 to your computer and use it in GitHub Desktop.
Save Perun/6678585 to your computer and use it in GitHub Desktop.
Die Komprimierung der hochgeladenen Bilder (.jpg) in WordPress deaktivieren. In die functions.php des aktiven Themes einfügen. Siehe auch: http://www.perun.net/2012/05/20/wordpress-als-privates-fotoalbum/
<?php
add_filter('jpeg_quality', function($arg){return 100;});
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment