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

前端 未结 15 1534
北海茫月
北海茫月 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:50

    WooCommerce is using this function to show billing and shipping addresses in the customer profile. So this will might help.

    The user needs to be logged in to get address using this function.

    wc_get_account_formatted_address( 'billing' );
    

    or

    wc_get_account_formatted_address( 'shipping' );
    

提交回复
热议问题