I'm working with Wordpress 3.5.2 and plugin Advanced CUstom Fields 4.1.8
I have a group of fields (called "P") and some fields. I want to retreive all data from a specific select field, and I found some code in the plugin documentation:
$values = get_field('field_519a0279bc93e'); if($values) {
foreach($values as $value)
{
echo '<li>' . $value . '</li>';
}
echo '</ul>';
}
In $values, getting two different select fields In a case I get a string and in another a boolean. I supposed is so simple, but I can't find the solution.
Thanks in advance.