Output multiple file upload images
gistfile1.phtml
<?php
$realisations = get_custom_field( 'candidate_realisation' );
if( ! empty( $realisations ) ){
foreach( $realisations as $realisation ){
echo '<img src="' . $realisation . '" class="_candidate_realisation" />';
}
}
?>
No comments yet.