2016-06-14 85 views
1

我有很多自定義字段是我在訂單中創建的,我現在試圖在訂單完成時在謝謝頁面上訪問它們。如何從訂單中訪問自定義字段woocommerce

我看過this迴應,但它不適用於我。我做了一個var dump來查看$order->order_custom_fields裏面有什麼,但我剛剛得到string(0) ""

我正在編輯這個文件order-details-customer.php如何訪問我的自定義字段?

這裏是我創造

 woocommerce_form_field('destination_state', array(
     'type'   => 'text', 
     'class'   => array('destination_state form-row-first'), 
     'label'   => __('State'), 
     'required'  => true, 
     ), $checkout->get_value('destination_state')); 

回答

0

有點搜索後,只是邏輯思維我想通了,這是很容易的自定義字段的例子。

echo '<p>' . get_post_meta( $order->id, 'Date Collection', true) . '</p>'; 
相關問題