Ich versuche, den Namen der mit einer Woocommerce-Bestellung verbundenen Gebühren herauszufinden und erhalte eine Reihe, weiß aber nicht, wie ich an den Namen komme.
Ich habe versucht, die Funktion get_name ()
zu verwenden, aber es funktioniert nicht.
$the_order->get_items( array( 'line_item', 'fee', 'shipping' ) );
Originaldatenausgabe:
[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 ( ) ) )
要访问和使用订单费用项目的属性,您需要使用 WC_Order_Item_Fee 方法首先使用 foreach 循环这样:
经过测试并有效