When using the Advanced Custom Fields plugin for WordPress,

Suppose I have a radio button field with possible choices:

o Apples o Bananas o Cranberries

How can I return each one of these options regardless of which one is selected?

Thanks everyone

1 Answer
1

Check out this page in order to discover your field key for your radio button: http://www.advancedcustomfields.com/docs/functions/get_field_object/

Next, insert this code where you are grabbing your field values:

<?php
 $key = 'your_fieldkey_here';
 $field = get_field_object($key); 
 if ($field) {
       foreach ($field['choices'] as $key => $value) {
        echo ('KEY : ' . $key);
        echo ('<br />');
        echo ('VALUE : ' . $value);
        echo ('<br />');
      }                             
   }
?>

This code will return your set of keys and values.

This only issue with this method is that it will not work if your radio button field is inside of a repeater field.

Leave a Reply

Your email address will not be published. Required fields are marked *