WooCommerce:父主题覆盖单个产品图像大小

WooCommerce: parent theme is overriding single product image size

我正在构建一个子主题,其父主题的代码覆盖了仪表板 WooCommerce 单一产品图像大小选项:

add_image_size( 'tw_shop_single', 360, 999, false );
add_filter('single_product_large_thumbnail_size', 'tw_single_product_large_thumb');
function tw_single_product_large_thumb() {
    return 'tw_shop_single';
}

有没有办法对 "cancel" 这段代码进行排序,或者在我的子主题中用我自己的单个产品图片大小覆盖它?

在您的子主题中 functions.php,试试这个...

function childtheme_remove_filters(){
     remove_filter('single_product_large_thumbnail_size', 'tw_single_product_large_thumb');
}
add_action( 'after_setup_theme', 'childtheme_remove_filters' );