WC_Cart::get_discount_total()publicWC 3.2.0

Get discount_total.

Method of the class: WC_Cart{}

Hooks from the method

Return

float.

Usage

$WC_Cart = new WC_Cart();
$WC_Cart->get_discount_total();

Changelog

Since 3.2.0 Introduced.

WC_Cart::get_discount_total() code WC 8.6.1

public function get_discount_total() {
	return apply_filters( 'woocommerce_cart_' . __FUNCTION__, $this->get_totals_var( 'discount_total' ) );
}