WC_Cart::get_cart_tax
Gets the cart tax (after calculation).
Method of the class: WC_Cart{}
Hooks from the method
Returns
String. formatted price
Usage
$WC_Cart = new WC_Cart(); $WC_Cart->get_cart_tax();
WC_Cart::get_cart_tax() WC Cart::get cart tax code WC 10.7.0
public function get_cart_tax() {
$cart_total_tax = wc_round_tax_total( $this->get_cart_contents_tax() + $this->get_shipping_tax() + $this->get_fee_tax() );
return apply_filters( 'woocommerce_get_cart_tax', $cart_total_tax ? wc_price( $cart_total_tax ) : '' );
}