Deprecated: Function seems_utf8 is deprecated since version 6.9.0! Use wp_is_valid_utf8() instead. in /home/dplugins-code/htdocs/code.dplugins.com/wp-includes/functions.php on line 6131

Deprecated: Function seems_utf8 is deprecated since version 6.9.0! Use wp_is_valid_utf8() instead. in /home/dplugins-code/htdocs/code.dplugins.com/wp-includes/functions.php on line 6131
Image Compression – Code DPlugins

Image Compression

By the default WordPress used 90% image compression on JPEG images. That can give small blurred effect.

To keep them clear use 100% of image quality

<?php

// Disable WordPress image compression
add_filter('wp_editor_set_quality', function ($arg) {
    return 100;
});
Click to Copy