【发布时间】:2020-11-22 04:20:12
【问题描述】:
我正在使用 Woocommerce 4.2.0 和 Storefront 的子主题。在产品页面中,我想让缩略图图像与主图像一样大(692 像素)。
我的functions.php中有这个:
/**
* Modify image width theme support.
*/
function iconic_modify_theme_support() {
$theme_support = get_theme_support( 'woocommerce' );
$theme_support = is_array( $theme_support ) ? $theme_support[0] : array();
$theme_support['single_image_width'] = 692;
// $theme_support['thumbnail_image_width'] = 324;
remove_theme_support( 'woocommerce' );
add_theme_support( 'woocommerce', $theme_support );
}
add_action( 'after_setup_theme', 'iconic_modify_theme_support', 100 );
【问题讨论】:
标签: wordpress woocommerce product thumbnails storefront