Skip to content

Instantly share code, notes, and snippets.

@tripflex
Created February 25, 2015 20:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tripflex/b2b55d5682b48b6e892d to your computer and use it in GitHub Desktop.
Save tripflex/b2b55d5682b48b6e892d to your computer and use it in GitHub Desktop.
Output multiple file upload images
<?php
$realisations = get_custom_field( 'candidate_realisation' );
if( ! empty( $realisations ) ){
foreach( $realisations as $realisation ){
echo '<img src="' . $realisation . '" class="_candidate_realisation" />';
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment