WC_Order::set_shipping_first_name() public WC 1.0
Set shipping first name.
{} It's a method of the class: WC_Order{}
No Hooks.
Return
Null. Nothing.
Usage
$WC_Order = new WC_Order(); $WC_Order->set_shipping_first_name( $value );
- $value(string) (required)
- Shipping first name.
Code of WC_Order::set_shipping_first_name() WC Order::set shipping first name WC 5.0.0
public function set_shipping_first_name( $value ) {
$this->set_address_prop( 'first_name', 'shipping', $value );
}