{@field_id[:delimiter[:expression]]}

Description

Loops through all values of a multivalue field and outputs each value using a template or the field's alias. A concise shorthand for iterating multivalue fields without needing a full {foreach:} loop. Syntax: {@field_id[:delimiter[:expression]]} The field_id is a dot-padded 16-character field identifier (e.g. category.......1, relation.......2). Without extra parameters, outputs all values separated by comma (the default delimiter): {@category.......1} With a custom delimiter: {@relation.......2:-} — values separated by dash {@category.......1:, } — values separated by comma-space With an expression template (replaces with each value): {@category.......1:,:<em></em>} — wraps each value in italics When used on a field with defined alias functions (alias1–alias3 in the Slice Admin), the alias transformation is applied to each value automatically. Note: {foreach:} is more powerful for complex templates; {@} is a clean shorthand for simple display of multivalue field contents. It is part of AA's alias/field processing and works within item templates. Status: Active — not deprecated.