WC_API_Orders::update_address() protected WC 1.0
Update address.
{} It's a method of the class: WC_API_Orders{}
No Hooks.
Return
Null. Nothing.
Usage
// protected - for code of main (parent) or child class $result = $this->update_address( $order, $posted, $type );
- $order(WC_Order) (required)
- -
- $posted(array) (required)
- -
- $type(string)
- -
Code of WC_API_Orders::update_address() WC API Orders::update address WC 5.0.0
protected function update_address( $order, $posted, $type = 'billing' ) {
foreach ( $posted as $key => $value ) {
if ( is_callable( array( $order, "set_{$type}_{$key}" ) ) ) {
$order->{"set_{$type}_{$key}"}( $value );
}
}
}