Support

Account

Home Forums General Issues Display list of taxonomy ID's and information linked to each ID Reply To: Display list of taxonomy ID's and information linked to each ID

  • 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);	 
    ?>