php 设置WooCommerce单品图像的裁剪尺寸。
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 设置WooCommerce单品图像的裁剪尺寸。相关的知识,希望对你有一定的参考价值。
add_filter( 'woocommerce_get_image_size_single', 'custom_wc_product_img_size' );
add_filter( 'woocommerce_get_image_size_shop_single', 'custom_wc_product_img_size' );
add_filter( 'woocommerce_get_image_size_woocommerce_single', 'custom_wc_product_img_size' );
function custom_wc_product_img_size() {
$size = array(
'width' => 800,
'height' => 800,
'crop' => 1,
);
return $size;
}
以上是关于php 设置WooCommerce单品图像的裁剪尺寸。的主要内容,如果未能解决你的问题,请参考以下文章
在 WooCommerce 单品页面显示总价,商品原价 * 最小数量
在 WooCommerce 中禁用原始图像裁剪
仅在所有 WooCommerce 单品上显示价格后缀
php [WooCommerce Core]在主题激活时设置WooCommerce图像尺寸
php [WooCommerce Core]在主题激活时设置WooCommerce图像尺寸
php [WooCommerce Core]在主题激活时设置WooCommerce图像尺寸