<?php $mytitle = get_field_duplicate('bio_title'); // use the Custom Field name
foreach($mytitle as $title){
echo $title;
} ?>
this is for a magic field setup on a post page.
<?php $mytitle = get_field_duplicate('bio_title'); // use the Custom Field name
foreach($mytitle as $title){
echo $title;
} ?>
this is for a magic field setup on a post page.
Id like to add, that on the same page, with non-recurring fields, get() works fine.
in MF2 get_field_duplicate no exist, you can use get_field http://wiki.magicfields.org/doku.php?id=front-end_functions_v20#get_field
You must log in to post.