WC_Order_Item_Product::set_subtotal
Line subtotal (before discounts).
Method of the class: WC_Order_Item_Product{}
No Hooks.
Returns
null. Nothing (null).
Usage
$WC_Order_Item_Product = new WC_Order_Item_Product(); $WC_Order_Item_Product->set_subtotal( $value );
- $value(string) (required)
- Subtotal.
WC_Order_Item_Product::set_subtotal() WC Order Item Product::set subtotal code WC 10.7.0
public function set_subtotal( $value ) {
$value = wc_format_decimal( $value );
if ( ! is_numeric( $value ) ) {
$value = 0;
}
$this->set_prop( 'subtotal', $value );
}