Radical Design Course by Jack McDade

From the creator of Statamic

Learn how to make your websites standout and be remembered.

Taking your approach on designing things actually makes it fun, more natural, and overall easier.

— Dominik, Developer

Sites Fieldtype

Allows you to select one or more sites when running a multi site.

Sites Fieldtype UI
The Sites Fieldtype in action!

Usage

fields:
my_sites_field:
type: sites

The Sites fieldtype is a Relationship fieldtype, and will save the site or sites as their handles (the config name).

sites:
- english
- french
- german

Templating

You're more than likely using this field as a way to dynamically fetch content from a specific site other than the current one.

<ul>
{{ collection:news :site="my_sites_field" }}
<li>{{ title }}</li>
{{ /collection:news }}
</ul>
<ul>
<li>Bonjour!</li>
<li>Ton tonton tond ton thon</li>
<li>etc</li>
</ul>

Options

max_items

integer

The maximum number of items that may be selected. Setting this to 1 will change the UI to a select dropdwon.

mode

string

Set the UI style for this field. Can be one of 'default' (Stack Selector), 'select' (Select Dropdown) or 'typeahead' (Typeahead Field).

Docs feedback

Submit improvements, related content, or suggestions through Github.

Betterify this page →