2016-11-21 98 views
1

爲了一個目的IM傳遞woocommerce值數組是這樣的:Woocommerce訂單名稱值

'name' => $_POST['billing_first_name'], 
    'phone' => $_POST['billing_phone'], 
    'email' => $_POST['billing_email'], 
    'note' => $_POST['order_comments'], 

現在我堅持尋找價值之一。訂購產品的名稱。

enter image description here

'subject' => HERE GOES THE PRODUCT NAME VALUE, 

我一直在到處尋找,嘗試了一些東西,但沒有到目前爲止的工作。

我在functions.php

回答

0

工作中檢索到的名稱這樣

// Retrieve order name 

    global $woocommerce; 
    $items = $woocommerce->cart->get_cart(); 

    foreach($items as $item => $values) { 
    $_product = $values['data']->post; 

    } 
    // 

,然後我把它叫做這樣

'subject' => $_product->post_title,