Skip to content

Kirby 4.1.2

$field->split()

Splits the field content into an array

$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>