Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iWebbers/5c11fdfe124671419d8a04ea1d101f94 to your computer and use it in GitHub Desktop.
Save iWebbers/5c11fdfe124671419d8a04ea1d101f94 to your computer and use it in GitHub Desktop.
// Get WooCommerce store address city via shortcode: [iw_store_address_city]
function iw_store_address_city_shortcode() {
$base_address = get_option( 'woocommerce_store_city', '' );
return apply_filters( 'woocommerce_countries_base_address', $base_address );
}
add_shortcode( 'iw_store_address_city', 'iw_store_address_city_shortcode' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment