WC_Order::set_cart_hash
Set cart hash.
Method of the class: WC_Order{}
No Hooks.
Returns
null. Nothing (null).
Usage
$WC_Order = new WC_Order(); $WC_Order->set_cart_hash( $value );
- $value(string) (required)
- Cart hash.
WC_Order::set_cart_hash() WC Order::set cart hash code WC 10.5.0
public function set_cart_hash( $value ) {
$this->set_prop( 'cart_hash', $value );
}