【发布时间】:2023-03-28 11:49:01
【问题描述】:
我店里的每个产品都有一个 ACF 图像字段,显示与产品(事件)相关的 T 恤图像。
现在我需要客户在结账时看到这张图片。我决定创建一个简码并将其添加到结帐页面的某个位置。
我不知道如何从购物车中的商品中获取 ACF 图像字段?
到目前为止,我尝试使用我放入 functions.php 的代码。有什么想法吗?
function wpb_demo_shortcode() {
$product_id = $cart_item['product_id'];
$image = get_field('tenue', $product_id);
$size = 'full'; // (thumbnail, medium, large, full or custom size)
if( $image ) {
return wp_get_attachment_image( $image, $size );
}
}
// register shortcode
add_shortcode('tenue-shortcode', 'wpb_demo_shortcode');
注意:我们设置购物车中只能有一个产品。
【问题讨论】:
标签: php wordpress woocommerce advanced-custom-fields shortcode