WC_Countries::get_base_address_2()
Get the base address (second line) for the store.
Method of the class: WC_Countries{}
Hooks from the method
Return
String
.
Usage
$WC_Countries = new WC_Countries(); $WC_Countries->get_base_address_2();
Changelog
Since 3.1.1 | Introduced. |
WC_Countries::get_base_address_2() WC Countries::get base address 2 code WC 9.4.2
public function get_base_address_2() { $base_address_2 = get_option( 'woocommerce_store_address_2', '' ); return apply_filters( 'woocommerce_countries_base_address_2', $base_address_2 ); }