Support

Account

Home Forums Front-end Issues Get Select Field Options Reply To: Get Select Field Options

  • get_field_object() http://www.advancedcustomfields.com/resources/get_field_object/

    You’re best bet with this would be to use the field key, not the field name.

    
    $field = get_field_object('field_abc123456789');
    $choices = $field['choices'];