Want to get all of the images associated with a post
-
Hello
I would like to get all of the images associated with each post. I tried the code below thus far with no luck:
‘if(class_exists(‘Dynamic_Featured_image’)): global $dynamic_featured_image;
$featured_images = $dynamic_featured_image->get_featured_images(get_the_ID);
$max = get_field(‘product-total’);
for($i = 0; $i < $max – 1; $i++):
$image{$i} = $featured_images[$i];
echo ‘‘;
endfor;
endif;’This code is in error. Can someone please tell me how the all images can be retrieved?
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Want to get all of the images associated with a post’ is closed to new replies.