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