WC_Cart::get_totals()publicWC 3.2.0

Return all calculated totals.

Method of the class: WC_Cart{}

No Hooks.

Return

Array.

Usage

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

Changelog

Since 3.2.0 Introduced.

WC_Cart::get_totals() code WC 8.7.0

public function get_totals() {
	return empty( $this->totals ) ? $this->default_totals : $this->totals;
}