WC_Order::set_shipping_first_name
Set shipping first name.
Method of the class: WC_Order{}
No Hooks.
Returns
null. Nothing (null).
Usage
$WC_Order = new WC_Order(); $WC_Order->set_shipping_first_name( $value );
- $value(string) (required)
- Shipping first name.
WC_Order::set_shipping_first_name() WC Order::set shipping first name code WC 10.5.0
public function set_shipping_first_name( $value ) {
$this->set_address_prop( 'first_name', 'shipping', $value );
}