WC_Order::set_cart_hash()
Set cart hash.
Метод класса: WC_Order{}
Хуков нет.
Возвращает
null
. Ничего (null).
Использование
$WC_Order = new WC_Order(); $WC_Order->set_cart_hash( $value );
- $value(строка) (обязательный)
- Cart hash.
Код WC_Order::set_cart_hash() WC Order::set cart hash WC 8.1.1
public function set_cart_hash( $value ) { $this->set_prop( 'cart_hash', $value ); }