WC_Customer::get_shipping_address_2
Get shipping_address_2.
Method of the class: WC_Customer{}
No Hooks.
Returns
String.
Usage
$WC_Customer = new WC_Customer(); $WC_Customer->get_shipping_address_2( $context );
- $context(string)
- What the value is for. Valid values are
'view'and'edit'.
Default:'view'
WC_Customer::get_shipping_address_2() WC Customer::get shipping address 2 code WC 10.7.0
public function get_shipping_address_2( $context = 'view' ) {
return $this->get_address_prop( 'address_2', 'shipping', $context );
}