WC_Order::set_billing_company()
Set billing company.
Method of the class: WC_Order{}
No Hooks.
Return
null
. Nothing (null).
Usage
$WC_Order = new WC_Order(); $WC_Order->set_billing_company( $value );
- $value(string) (required)
- Billing company.
WC_Order::set_billing_company() WC Order::set billing company code WC 9.6.1
public function set_billing_company( $value ) { $this->set_address_prop( 'company', 'billing', $value ); }