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

前端 未结 15 1530
北海茫月
北海茫月 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条回答
  •  萌比男神i
    2020-12-01 01:06

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

提交回复
热议问题