WC_Cart::get_coupon_discount_tax_amount()
Get the discount tax amount for a used coupon (for tax inclusive prices).
Method of the class: WC_Cart{}
No Hooks.
Return
float
. discount amount
Usage
$WC_Cart = new WC_Cart(); $WC_Cart->get_coupon_discount_tax_amount( $code );
- $code(string) (required)
- coupon code.
WC_Cart::get_coupon_discount_tax_amount() WC Cart::get coupon discount tax amount code WC 9.6.1
public function get_coupon_discount_tax_amount( $code ) { $totals = $this->get_coupon_discount_tax_totals(); return wc_cart_round_discount( isset( $totals[ $code ] ) ? $totals[ $code ] : 0, wc_get_price_decimals() ); }