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