How to get Order Details from a WC_Subscription instance Object

后端 未结 2 1701
隐瞒了意图╮
隐瞒了意图╮ 2021-01-26 12:08

This one for completed initial subscription payments and subscription renewals.

function payment_made($subscription){
    // How do I get the order details?
}
add         


        
相关标签:
2条回答
  • 2021-01-26 13:06

    Some details can be obtained directly from the WC_ subscription object using the following methods

     $subscription->get_id() //subscription id
     $subscription->get_parent_id() //order id
     $subscription->get_currency()
     $subscription->get_customer_note()
     $subscription->get_prices_include_tax()
     $subscription->get_payment_method()
     $subscription->get_payment_method_title()
     $subscription->get_billing_first_name()
     $subscription->get_billing_last_name()
     $subscription->get_billing_company()
     $subscription->get_billing_address_1()
     $subscription->get_billing_address_2()
     $subscription->get_billing_city()
     $subscription->get_billing_state()
     $subscription->get_billing_postcode()
     $subscription->get_billing_country()
     $subscription->get_billing_email()
     $subscription->get_billing_phone()
     $subscription->get_shipping_first_name()
     $subscription->get_shipping_last_name()
     $subscription->get_shipping_company()
     $subscription->get_shipping_address_1()
     $subscription->get_shipping_address_2()
     $subscription->get_shipping_city()
     $subscription->get_shipping_state()
     $subscription->get_shipping_postcode()
     $subscription->get_shipping_country()
     $subscription->get_order_key()
     $subscription->get_date_created()
     $subscription->get_date_modified()
    
    0 讨论(0)
  • 2021-01-26 13:14

    To get the Order details from the WC_Subscription Object, you will need first to get the parent ID (which is the order ID) using get_parent_id() method:

    $order_id = $subscription->get_parent_id();
    

    Then you will get the WC_Order Object from the order Id using:

    $order = wc_get_order( $order_id );
    

    Then to get order details: How to get WooCommerce order details

    Related:

    • How to get the user ID from a WC_Subscription instance Object
    • How to get the Product ID from a WC_Subscription instance Object
    0 讨论(0)
提交回复
热议问题