WC_Cart::get_fee_tax
Get total fee tax amount.
Method of the class: WC_Cart{}
Hooks from the method
Returns
float.
Usage
$WC_Cart = new WC_Cart(); $WC_Cart->get_fee_tax();
Changelog
| Since 3.2.0 | Introduced. |
WC_Cart::get_fee_tax() WC Cart::get fee tax code WC 10.3.6
public function get_fee_tax() {
return apply_filters( 'woocommerce_cart_' . __FUNCTION__, $this->get_totals_var( 'fee_tax' ) );
}