$order_id = XXX;
$order = wc_get_order( $order_id ); //returns WC_Order if valid order
$items = $order->get_items(); //returns an array of WC_Order_item or a child class (i.e. WC_Order_Item_Product)
foreach( $items as $item ) {
//returns the type (i.e. variable or simple)
$type = $item->get_type();
//the product id, always, no matter what type of product
$product_id = $item->get_product_id();
//a default
$variation_id = false;
//check if this is a variation using is_type
if( $item->is_type('variable') ) {
$variation_id = $item->get_variation_id();
}
//more code
}
2条答案
按热度按时间q5lcpyga1#
正如你在注解中提到的“我编写的脚本独立于wordpress”。
然后会有一个您可以使用的查询
从产品id获取变体id列表。
从中选择id
wp_posts
哪里post_parent
=“产品标识”和post_type
比如“产品变化”3duebb1j2#
通过使用WooCommerceAPI的各个方面,可以使用以下的一些版本来实现这一点。
注意文件,
wc_get_order();
WC_Order();
WC_Order_Item();WC_Order_Item_Product();