WooCommerce 3.0+
คุณสามารถรับรายการสั่งซื้อของการสั่งซื้อโดย
$order = wc_get_order( $order_id );
$items = $order->get_items();
จากนั้นถ้าคุณวนรอบรายการคุณจะได้รับข้อมูลที่เกี่ยวข้องทั้งหมด:
foreach ( $items as $item ) {
$product_name = $item->get_name();
$product_id = $item->get_product_id();
$product_variation_id = $item->get_variation_id();
}
เคล็ดลับที่ดีคือการตรวจสอบว่าหน้าสั่งซื้อของผู้ดูแลระบบได้รับข้อมูลอย่างไรคุณจะพบคำตอบมากมายที่นั่น!
Pre-WooCommerce 3.0
$order = new WC_Order( $order_id );
$items = $order->get_items();
foreach ( $items as $item ) {
$product_name = $item['name'];
$product_id = $item['product_id'];
$product_variation_id = $item['variation_id'];
}