WC_Cart::set_totals()publicWC 3.2.0

Set all calculated totals.

Method of the class: WC_Cart{}

No Hooks.

Return

null. Nothing (null).

Usage

$WC_Cart = new WC_Cart();
$WC_Cart->set_totals( $value );
$value(array)
Value to set.
Default: array()

Changelog

Since 3.2.0 Introduced.

WC_Cart::set_totals() code WC 8.7.0

public function set_totals( $value = array() ) {
	$this->totals = wp_parse_args( $value, $this->default_totals );
}