I've got an array
$node->field_audio[0]['view'];
$node->field_audio[1]['view'];
etc...
I need to loop through and print each view as in
print $node->field_audio[0]['view'];
but for all of the items.
I've tried:
<code>
<?php foreach ((array)$node->field_audio as $item) {
print $item->view;
</code>
But it doesn't work...
Please advise 🙂
Cheers,
Adam