Is it possible to pass data through multiple display helpers?
I have a POD column that accepts multiple images, putting them into an array. I then pass that array through a display helper
<pre>
{$event_more_images.guid, image_helper}
</pre>
image helper is this::
<pre>
<?php
if (is_array($value)) {
foreach ($value as $image_data) {
echo "<img src=’$image_data’ />n";
}
}
?>
</pre>
this allows me to display the images, which is great! but i would like to output those .guid values and pass them through another display helper [the image-sizes display helper provided in packages], that way i can display the thumbnails of those values, and then link the thumbnails to the actual images.
so to essentially pass the $image_data value through image_thumbnail helper.
is this even possible?