首页 > 解决方案 > woocommerce 缩略图替换为原始图像过滤器

问题描述

我在 woocommerce 中的问题:

 <img width="150" height="150" src="http://localhost/wordpress/wp-content/uploads/2020/04/Handmade-e1588339358176-150x150.jpg" class="attachment-woocommerce_thumbnail size-woocommerce_thumbnail" alt="" />

我希望它如何:

<img width="150" height="150" src="http://localhost/wordpress/wp-content/uploads/2020/04/Handmade-e1588339358176.jpg" class="attachment-shop_catalog size-shop_catalog wp-post-image" alt="" />

在functions.php中我有

   add_filter( 'woocommerce_get_image_size_thumbnail', function( $size ) {
       return array(
          'width'  =>  150,
          'height' => 150,
          'crop'   => 1,
       );
   });

或者无论如何要删除 width="" 和 height="" 属性......所以我让我的 imgs 从 css 响应?

标签: woocommerce

解决方案


推荐阅读