獲取 Woocommerce 3 中的訂單費用項目詳細信息
P粉438918323
P粉438918323 2024-02-21 10:23:55
0
1
394

我嘗試取得 Woocommerce 訂單中附加的費用名稱,我得到一個數組,但我不知道如何取得該名稱。

我嘗試使用函數 get_name () 但它不起作用。

$the_order->get_items( array( 'line_item', 'fee', 'shipping' ) );

原始資料輸出:

[137] => WC_Order_Item_Fee Object
        (
            [extra_data:protected] => Array
                (
                    [tax_class] => 
                    [tax_status] => taxable
                    [amount] => 
                    [total] => 
                    [total_tax] => 
                    [taxes] => Array
                        (
                            [total] => Array
                                (
                                )

                        )

                )

            [data:protected] => Array
                (
                    [order_id] => 7795
                    [name] => Frais de réservation
                    [tax_class] => 0
                    [tax_status] => taxable
                    [amount] => 
                    [total] => 35
                    [total_tax] => 0
                    [taxes] => Array
                        (
                            [total] => Array
                                (
                                )

                        )

                )

P粉438918323
P粉438918323

全部回覆(1)
P粉436052364

要存取和使用訂單費用項目的屬性,您需要使用 WC_Order_Item_Fee 方法首先使用 foreach 循環這樣:

// (optional if not defined) An instance of the WC_Order object
$the_order = wc_get_order( $order_id );

// Iterating through order fee items ONLY
foreach( $the_order->get_items('fee') as $item_id => $item_fee ){

    // The fee name
    $fee_name = $item_fee->get_name();

    // The fee total amount
    $fee_total = $item_fee->get_total();

    // The fee total tax amount
    $fee_total_tax = $item_fee->get_total_tax();
}

經過測試並有效

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!