WC_Cart::get_taxes()

Returns the cart and shipping taxes, merged.


Description Description


Return Return

(array) merged taxes


Top ↑

Source Source

File: includes/class-wc-cart.php

	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 );
	}


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.