Hi
Using oxygen builder, I want to display a list of image in a single page.
Making this code in code block, it crashes my site
<ul class="list-image">
<?php $images = types_render_field('slider-images');
foreach ($images as $image):?>
I think you should be including the size (thumbnail) as an argument in the types_render_field call, together with the attribute to specify you want only the corresponding URLs (rather than the image tags), something like
Hi nigel,
Thanks for your answer. I try this but it's still not work
<ul class="list-image">
<?php
$images = types_render_field( 'slider-images', array( 'size' => 'thumbnail', 'url' => true ) );
foreach ($images as $image):?>