Can you use helpers for echoing variables while iterating through an array? All I have been able to do is something like this:
<?php foreach ($this->news_stories as $story): ?>
<li><?= $story['title'] ?></li>
<?php endforeach ?>
Are there any other options for doing this?I'm not sure whether this is providing an escaping or other benefits of helpers.