WooCommerce get_sku(); 제품 바리에이션 순서 제품 SKU를 구해야 하는 Woocommerce용 커스텀 기능을 구축하고 있으며, '바리에이션' 제품이 변형별 SKU를 구해야 하는 경우입니다. 현재 가지고 있는 것은 다음과 같습니다. // Query order data $order = new WC_Order($order_id); $items = $order->get_items(); // Output the loop foreach ($order->get_items() as $item) { // Getting some information $product_name = $item['name']; $product_id = $item['product_id']; $product_qty = $item[..