WC_Customer::set_shipping_address_1()
Set shipping_address_1.
Method of the class: WC_Customer{}
No Hooks.
Return
null
. Nothing (null).
Usage
$WC_Customer = new WC_Customer(); $WC_Customer->set_shipping_address_1( $value );
- $value(string) (required)
- Shipping address line 1.
WC_Customer::set_shipping_address_1() WC Customer::set shipping address 1 code WC 9.4.2
public function set_shipping_address_1( $value ) { $this->set_address_prop( 'address_1', 'shipping', $value ); }