WC_Order::set_customer_note
Set customer note.
Method of the class: WC_Order{}
No Hooks.
Returns
null. Nothing (null).
Usage
$WC_Order = new WC_Order(); $WC_Order->set_customer_note( $value );
- $value(string) (required)
- Customer note.
WC_Order::set_customer_note() WC Order::set customer note code WC 10.5.0
public function set_customer_note( $value ) {
$this->set_prop( 'customer_note', $value );
}