最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

media library - How to prevent WordPress scaling large images down

programmeradmin1浏览0评论

I've tried the following code in the active child theme's functions.php to prevent the large digital print JPGs from being scaled down, but it didn't succeed:

function remove_all_image_sizes() {
    foreach ( get_intermediate_image_sizes() as $size ) {
            remove_image_size( $size );
    }
}
 
add_action('init', 'remove_all_image_sizes');

Can you help me 'turn off' WordPress scaling down large images please?

Help appreciated.

发布评论

评论列表(0)

  1. 暂无评论