如何降低Wordpress特色图像的质量(PHP)

时间:2016-08-08 19:40:04

标签: php css wordpress image resolution

我发现的所有帖子都是关于人们抱怨图像质量太低但我的图像质量太高而我想降低它们以提高页面速度。如何在functions.php文件中通过自动高度将分辨率设置为300宽度?这是我用来在我的functions.php中调用它的代码:

(注):我不想硬裁剪或软裁剪,我只想影响分辨率。

PHP:

<?php

function ericshio_theme_setup() {
    add_theme_support( 'menus' );
    add_theme_support( 'custom-logo' );
    add_theme_support( 'custom-header' );
    add_theme_support( 'custom-background' );  

/* Post Thumbnails */

    add_theme_support( 'post-thumbnails' );
    add_theme_support( 'post-formats', array( 'aside', 'image', 'video' ));
    register_nav_menu('Primary','Main Navigation');
}

add_action('init', 'ericshio_theme_setup');

?>

0 个答案:

没有答案