$field->split() Splits the field content into an array kirby/config/methods.php#L573 $field->split($separator = ','): array Parameters Name Type Default $separator mixed ',' Return type array Example <h2>Tags</h2> <ul> <?php foreach ($page->tags()->split(',') as $tag): ?> <li><?= $tag ?></li> <?php endforeach ?> </ul>