Hi guys,
I am using the template controls to loop through a channel as follows:
<ul>
{exp:channel:entries category_group="1" orderby="date" limit="15" }
<li>{title} {channel_name}</li>
{/exp:channel:entries}
</ul>
Within this template loop I would like to use PHP to alter one of the variables with an explode, extracting part of the data.
I understand that PHP executes first, then the template code.. so how would you suggest I manipulate channel data?
Thanks