Woocommerce 挂钩将产品库图像显示为全尺寸图像

发布于 2025-01-09 20:11:44 字数 886 浏览 3 评论 0原文

有人可以展示我们如何在 Woocommerce 中使用此代码吗?

我正在使用这段代码 正在显示 Woocommerce 产品库图像作为全尺寸图像而不是缩略图 但不工作。 (也许,我只是不知道如何使用它)

 add_action('woocommerce_shop_loop_item_title','wps_add_extra_product_thumbs', 5);
 function wps_add_extra_product_thumbs() {

     if (is_product()) {

         global $product;

         $attachment_ids = $product->get_gallery_image_ids();

         echo '<div class="product-thumbs">';

         foreach( array_slice( $attachment_ids, 0,3 ) as $attachment_id ) {

               $thumbnail_url = wp_get_attachment_image_src( $attachment_id, 'thumbnail' )[0];

               echo '<img class="thumb" src="' . $thumbnail_url . '">';

         }

         echo '</div>';

     }

  }

Can someone show how we can use this code with Woocommerce?

I am using this code from
Woocommerce product gallery images are showing as full size images instead of thumbnail
but not working. (maybe, I just don't know how to use it )

 add_action('woocommerce_shop_loop_item_title','wps_add_extra_product_thumbs', 5);
 function wps_add_extra_product_thumbs() {

     if (is_product()) {

         global $product;

         $attachment_ids = $product->get_gallery_image_ids();

         echo '<div class="product-thumbs">';

         foreach( array_slice( $attachment_ids, 0,3 ) as $attachment_id ) {

               $thumbnail_url = wp_get_attachment_image_src( $attachment_id, 'thumbnail' )[0];

               echo '<img class="thumb" src="' . $thumbnail_url . '">';

         }

         echo '</div>';

     }

  }

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

末骤雨初歇 2025-01-16 20:11:44

使用

$thumbnail_url = wp_get_attachment_image_src( $attachment_id, 'full' )[0];

而不是

$thumbnail_url = wp_get_attachment_image_src( $attachment_id, 'thumbnail' )[0];

Use

$thumbnail_url = wp_get_attachment_image_src( $attachment_id, 'full' )[0];

instead of

$thumbnail_url = wp_get_attachment_image_src( $attachment_id, 'thumbnail' )[0];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文