WC_Cart::get_taxes()
Returns the cart and shipping taxes, merged.
Метод класса: WC_Cart{}
Хуки из метода
Возвращает
Массив
. merged taxes
Использование
$WC_Cart = new WC_Cart(); $WC_Cart->get_taxes();
Код WC_Cart::get_taxes() WC Cart::get taxes WC 9.4.2
public function get_taxes() { return apply_filters( 'woocommerce_cart_get_taxes', wc_array_merge_recursive_numeric( $this->get_shipping_taxes(), $this->get_cart_contents_taxes(), $this->get_fee_taxes() ), $this ); }