WC_Abstract_Order::get_total_fees
Calculate fees for all line items.
Метод класса: WC_Abstract_Order{}
Хуков нет.
Возвращает
float. Fee total.
Использование
$WC_Abstract_Order = new WC_Abstract_Order(); $WC_Abstract_Order->get_total_fees();
Код WC_Abstract_Order::get_total_fees() WC Abstract Order::get total fees WC 10.7.0
public function get_total_fees() {
return array_reduce(
$this->get_fees(),
function ( $carry, $item ) {
return $carry + (float) $item->get_total();
},
0.0
);
}