我正在尝试为WooCommerce定制电子邮件模板,我们正在使用WooCommerce预订插件。我正在尝试在电子邮件中显示属性,但我很难这样做。
我尝试使用get_the_terms($product->ID,'pa_attribute')
,但似乎无效。我认为这是因为电子邮件模板无法获取产品ID。为我输出的唯一ID是$order->ID
,这不是我真正需要的。
如何在WooCommerce Booking电子邮件中获取订单的资源产品ID?
答案 0 :(得分:0)
修好了。感谢@helgatheviking。这是我的代码。
`$order = wc_get_order( $order->id ); $order = $order->get_items(); $productid = $orderdd[16]["product_id"]; $attdata = wp_get_post_terms($productid,'pa_attributeslug'); foreach ( $attdata as $data ) { echo $data->name;}`