WC_Cart::set_subtotal()publicWC 3.2.0

Set subtotal.

Method of the class: WC_Cart{}

No Hooks.

Return

null. Nothing (null).

Usage

$WC_Cart = new WC_Cart();
$WC_Cart->set_subtotal( $value );
$value(string) (required)
Value to set.

Changelog

Since 3.2.0 Introduced.

WC_Cart::set_subtotal() code WC 9.4.2

public function set_subtotal( $value ) {
	$this->totals['subtotal'] = wc_format_decimal( $value );
}