在 WooCommerce 电子邮件模板中显示产品图片

发布于 2025-01-09 23:51:49 字数 306 浏览 1 评论 0原文

我在我的电子邮件模板中使用以下代码。 $sent_to_admin, 'show_image' => true, 'image_size' => array(75, 75), 'plain_text' => ; $plain_text, 'sent_to_admin' => $sent_to_admin, )); ?> 但是使用这个代码我得到了一个产品缩略图,我想要得到一个特色图像或完整图像。请帮忙

I am using the following code in my email template.
<?php echo wc_get_email_order_items($order, array( 'show_sku' => $sent_to_admin, 'show_image' => true, 'image_size' => array(75, 75), 'plain_text' => $plain_text, 'sent_to_admin' => $sent_to_admin, )); ?>
But using this code I am getting a product thumbnail, I want to get a featured image or full image. Plz help

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

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

发布评论

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

评论(1

不必你懂 2025-01-16 23:51:49
wc_get_email_order_items($order, array( 'show_sku' => $sent_to_admin, 'show_image' => true, 'image_size' => 'full', 'plain_text' => $plain_text, 'sent_to_admin' => $sent_to_admin, ));

参数image_size - 接受任何已注册的图像大小名称,或以像素为单位的宽度和高度值数组(按该顺序)。默认“缩略图”(“woocommerce_thumbnail”、“完整”、“woocommerce_single”、“woocommerce_gallery_thumbnail”)

wc_get_email_order_items($order, array( 'show_sku' => $sent_to_admin, 'show_image' => true, 'image_size' => 'full', 'plain_text' => $plain_text, 'sent_to_admin' => $sent_to_admin, ));

The parameter image_size - Accepts any registered image size name, or an array of width and height values in pixels (in that order). Default 'thumbnail' ('woocommerce_thumbnail', 'full', 'woocommerce_single', 'woocommerce_gallery_thumbnail')

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