WC_Cart::set_shipping_total()publicWC 3.2.0

Set shipping_total.

Method of the class: WC_Cart{}

No Hooks.

Return

null. Nothing (null).

Usage

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

Changelog

Since 3.2.0 Introduced.

WC_Cart::set_shipping_total() code WC 8.7.0

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