我在嘗試更改WooCommerce縮略圖裁剪位置。我發現這個代碼,可以幫助改變大小:如何更改WooCommerce縮略圖裁剪位置?
add_action('init', 'yourtheme_woocommerce_image_dimensions', 1);
/**
* Define image sizes
*/
function yourtheme_woocommerce_image_dimensions() {
$catalog = array(
'width' => '100', // px
'height' => '100', // px
'crop' => 0
);
// Image sizes
update_option('shop_catalog_image_size', $catalog); // Product category thumbs
}
我做了一些嘗試樣改變作物0
到array("center", "bottom")
,但它不工作:
function yourtheme_woocommerce_image_dimensions() {
$catalog = array(
'width' => '300', // px
'height' => '400', // px
'crop' => 'array("center", "bottom")'
);
// Image sizes
update_option('shop_catalog_image_size', $catalog); // Product category thumbs
}
而且也是這個沒有成功:
if (function_exists('add_image_size')){
add_image_size('shop_catalog', 300, 400, array('center', 'bottom'));
}
有反正我可以改變它嗎?
謝謝。
它的工作完美。謝謝! –