WC_Abstract_Order::get_taxes
Return an array of taxes within this order.
Метод класса: WC_Abstract_Order{}
Хуков нет.
Возвращает
WC_Order_Item_Tax[].
Использование
$WC_Abstract_Order = new WC_Abstract_Order(); $WC_Abstract_Order->get_taxes();
Код WC_Abstract_Order::get_taxes() WC Abstract Order::get taxes WC 10.5.0
public function get_taxes() {
return $this->get_items( 'tax' );
}