如果你想在网站上展示高质量的图像,那么你可以在WordPress中关闭图像压缩。
您可以通过在functions.php
:
add_filter(\'jpeg_quality\', function($arg){return 100;});
或者您可以创建插件:
<?php
/**
* Plugin Name: Remove WordPress Image Compression
* Plugin URI: [Plugun URI}
* Version: 1.0
* Author: [Your name]
* Author URI: [Your URI]
* Description: This will remove the compression WordPress, applies to images when uploading to your media library.
*/
/**
* Override the default image quality when resizing and cropping images
*/
add_filter(\'jpeg_quality\', function($arg){return 100;});
上述代码将值设置为
100. 这意味着WordPress以最高质量压缩图像。
现在,激活插件后,上传的任何新图像将不再受WordPress图像压缩的影响。请记住,之前上传到激活插件时需要重新上传才能删除压缩。