WC_Cart::set_subtotal( string $value )
Set subtotal.
Description Description
Parameters Parameters
- $value
-
(Required) Value to set.
Source Source
File: includes/class-wc-cart.php
public function set_subtotal( $value ) {
$this->totals['subtotal'] = wc_format_decimal( $value, wc_get_price_decimals() );
}
Changelog Changelog
| Version | Description |
|---|---|
| 3.2.0 | Introduced. |