How can I get customer details from an order in WooCommerce?

前端 未结 15 1508
北海茫月
北海茫月 2020-12-01 00:10

I have a function that does this:

$order = new WC_Order($order_id);
$customer = new WC_Customer($order_id);

How can I get customer details fr

15条回答
  •  离开以前
    2020-12-01 00:51

    I was looking for something like this. It works well.

    So get the mobile number in WooCommerce plugin like this -

    $customer_id = get_current_user_id();
    print get_user_meta($customer_id, 'billing_phone', true);
    

提交回复
热议问题