Wordpress中的图片切断/不合适

时间:2016-08-19 20:29:27

标签: wordpress image thumbnails

enter image description here

正如您在图片中看到的,当我将产品图像上传到WordPress时,模型的头部会被切断,我无法以缩略图的形式看到完整的图像。有没有人有解决这个问题的方法?

1 个答案:

答案 0 :(得分:0)

你可以设置没有裁剪的thumnails,只需在function.php中添加自定义thumnail并使用它,如下所示:

在function.php ::

add_action( 'after_setup_theme', 'wpdocs_theme_setup' );
function wpdocs_theme_setup() {
    add_image_size( 'my-thumb', 50 ); // 50 pixels wide by 50 pixels tall, resize mode (whitout croped)
}