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