Nevermind, I’ve found the solution. It was an error caused by the Events Plugin I’m using ! I finally got it to work 😉
Thanks a lot !
Hi,
Yes here is the code :
<?php $values = get_field('animateurs_event');
if($values)
{
echo '<ul>';
foreach($values as $value){
echo '<li>' . $value . '</li>';}
echo '</ul>';
}
var_dump($values);
?>