WC_Cart::set_total()
Set cart total.
{} It's a method of the class: WC_Cart{}
No Hooks.
Return
null
. Nothing.
Usage
$WC_Cart = new WC_Cart(); $WC_Cart->set_total( $value );
- $value(string) (required)
- Value to set.
Changelog
Since 3.2.0 | Introduced. |
Code of WC_Cart::set_total() WC Cart::set total WC 6.7.0
public function set_total( $value ) { $this->totals['total'] = wc_format_decimal( $value, wc_get_price_decimals() ); }