2017-03-02 84 views
1

我使用woocomerce插件版本2.6.11和wordpress版本是4.7.2。我试图使用订单的产品元数据获得所有产品(order_id = 273)。我尝试下面。但$item['product_id']返回空。没有什么是回报。产品ID返回空WC_Order- woocommerce

function custom_get_order_details($order_id){ 
     global $woocommerce; 


     // for test im using $order_id = 273 
     $order = new WC_Order($order_id); 

     foreach ($order->get_items() as $item_id => $item){ 

      print_r($item_id); 
      echo $product_id = wc_get_order_item_meta($item_id, '_product_id', true); 
      echo "<br>test_30<br>"; 
      echo $variation_id = wc_get_order_item_meta($item_id, '_variation_id', true); 
      echo $quantity = wc_get_order_item_meta($item_id, '_qty', true); 

     } 
     //$curl = curl_init(); 
     //curl post here 
    } 
    add_action('woocommerce_payment_complete', 'custom_get_order_details', 10, 1); 

如果我打印$item里面for循环。它打印

array(4) { ["name"]=> string(4) "Test" ["type"]=> string(9) "line_item" ["item_meta"]=> NULL ["item_meta_array"]=> array(9) { [1]=> object(stdClass)#823 (2) { ["key"]=> string(4) "_qty" ["value"]=> string(1) "1" } [2]=> object(stdClass)#822 (2) { ["key"]=> string(10) "_tax_class" ["value"]=> string(0) "" } [3]=> object(stdClass)#821 (2) { ["key"]=> string(11) "_product_id" ["value"]=> string(4) "2856" } [4]=> object(stdClass)#820 (2) { ["key"]=> string(13) "_variation_id" ["value"]=> string(1) "0" } [5]=> object(stdClass)#819 (2) { ["key"]=> string(14) "_line_subtotal" ["value"]=> string(3) "100" } [6]=> object(stdClass)#818 (2) { ["key"]=> string(11) "_line_total" ["value"]=> string(3) "100" } [7]=> object(stdClass)#817 (2) { ["key"]=> string(18) "_line_subtotal_tax" ["value"]=> string(1) "0" } [8]=> object(stdClass)#816 (2) { ["key"]=> string(9) "_line_tax" ["value"]=> string(1) "0" } [9]=> object(stdClass)#815 (2) { ["key"]=> string(14) "_line_tax_data" ["value"]=> string(45) "a:2:{s:5:"total";a:0:{}s:8:"subtotal";a:0:{}}" } } } 

它也返回空 - $order->get_item_meta($item_id, '_qty', true)

我不知道我错了这一点。

enter image description here

enter image description here enter image description here

回答

0

这将是$item_data$item,有一个错字错误。

echo '$item["product_id"] <i>(product ID)</i>: ' . $item_data['product_id'] . '<br>'; //<--- notice $item_data 
echo '$item["name"] <i>(product Name)</i>: ' . $item_data['name'] . '<br>'; //<--- notice $item_data 

UPDATE V2

您也可以从item_metaproduct_id这样

foreach ($items as $item_id => $item) { 
    //.. 
    echo $item['item_meta']['_product_id'][0]; 
    echo $item['item_meta']['_qty'][0]; 
    //... 
} 

希望这有助于!

+0

更新我的问题得到订单的订单项目的详细信息。没有运气。我将$ item_data更改为$ item。不工作。 – vel

+0

$ item ['name']返回产品名称。但产品ID返回空。 – vel

+0

我已更新我的答案。 'var_dump'中缺少'product_id'键,所以你可以从'item_meta'获得它。 –

2

您可以通过

// Getting an instance of the order object 

    $order = new WC_Order($order_id); 
    $items = $order->get_items(); 

    //Loop through them, you can get all the relevant data: 

    foreach ($items as $item) { 
     $product_name = $item['name']; 
     $product_id = $item['product_id']; 
     $product_variation_id = $item['variation_id']; 
    } 
+0

我试过这种方式。不工作。 – vel

+0

@Vel你正在试图编码哪个模板文件? –

+0

我不在模板文件中工作。即时通讯使用此代码功能.php – vel