在 WooCommerce 电子邮件模板中显示产品图片
我在我的电子邮件模板中使用以下代码。 $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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
参数
image_size
- 接受任何已注册的图像大小名称,或以像素为单位的宽度和高度值数组(按该顺序)。默认“缩略图”(“woocommerce_thumbnail”、“完整”、“woocommerce_single”、“woocommerce_gallery_thumbnail”)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')