all_ country_ option_ tags
Creates an <option>
tag for each country.
An attribute called data-provinces
is set for each <option>
, and contains a JSON-encoded array of the
country or region's subregions. If a country doesn't have any subregions, then an empty array is set for
its data-provinces
attribute.
Tip
To return only the countries and regions included in the store's shipping zones, use the object.
Directly accessible in
- Global
You can wrap the object in
<select>
tags to build a country option selector.
<select name="country">
{{ all_country_option_tags }}
</select>
Was this section helpful?