List all images from a single post meta value
I have created a custom post type with an image gallery upload. Now I am trying to display the gallery on the front end. This is what I have so far that works to display 1 image, but if multiple images are uploaded all the URLs get stuck in the src
tag. So I'm guessing I should loop through that array and spit out each one separately? Would that be the route to go and if so how can I accomplish this?
?php if (have_posts()) : while (have_posts()) : the_post(); ?
?php
echo 'img src="'.get_post_meta($post-ID, 'gallery-upload', true).'"';
?
?php endwhile; else: ?
p?php _e('No posts were found. Sorry!'); ?/p
?php endif; ?
EDIT:
This is what I ended up with that works...
?php
foreach(get_post_meta($post-ID, 'gallery-upload') as $meta) {
foreach(explode(',', $meta) as $src) {
echo 'img src="'.htmlentities($src).'"';
}
}
?
Topic post-meta images custom-field custom-post-types Wordpress
Category Web