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

时间:2015-01-20 23:13:17

标签: woocommerce

我正在构建一个子主题,其父主题的代码覆盖了仪表板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';
}

有没有办法可以“取消”这段代码,或者在我的孩子主题中用我自己的单一产品图片大小覆盖它?

1 个答案:

答案 0 :(得分:0)

在你的孩子主题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' );