使用CSS将图像大小调整为移动缩略图

时间:2017-08-10 作者:user125651

我使用wordpress插件(Gmedia galleries)创建图库,当我将缩略图宽度移动和缩略图高度移动设置为50时出现问题,因为图像未居中于缩略图中

50x50

Mobile view

是否可以根据这些设置调整图像大小?

有人能帮我吗?非常感谢

1 个回复
SO网友:Samyer

编辑:你能发送链接到那个页面,这样我就可以看到css了吗?

这有点像是在黑暗中拍摄的,因为我只添加了图像大小,但我相信您应该能够更改缩略图裁剪位置。图像src是否100%不正确,图像是否未被css切断?

function setup_image_sizes() {
    set_post_thumbnail_size( 50, 50, array(\'center\', \'center\') ); 
    //Or try
    update_option( \'thumbnail_crop\', array(\'center\', \'center\') );
    //I am assuming the image size is called thumbnail but it might be different if it is created in the plugin

}

add_action( \'after_setup_theme\', \'setup_image_sizes\' );
参考号:https://developer.wordpress.org/reference/functions/add_image_size/

结束