I have install the plugin Simple fields for WordPress, create an repeatable field for file. Upload an amount of images to an portfolio item. Now I will show these images on the page. I use currently the following code:
$file_id = simple_fields_value('image_repeater');
$image_info = wp_get_attachment_image_src($file_id, "full");
$image_url = $image_info[0];
echo "<img src='$image_url' class='imagebox' />";
This will show only the first image that I have uploaded. Now I want to show also the other images, but I don't know how. Hope somebody can help me out!
Thank you!