Skip to content

Instantly share code, notes, and snippets.

@pdewouters
Created March 16, 2012 22:23
Show Gist options
  • Select an option

  • Save pdewouters/2053258 to your computer and use it in GitHub Desktop.

Select an option

Save pdewouters/2053258 to your computer and use it in GitHub Desktop.
ECPT image loop
$images = get_post_meta($post->ID, 'ecpt_repeatable', true);
if($images) {
foreach($images as $image) {
echo '<div class="image"><img src="' . $image . '"/></div>';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment