Support

Account

Home Forums General Issues Displaying Labels Reply To: Displaying Labels

  • Try this:

    
    <?php
      $full_object = get_field_object('field_name_here');
      
      foreach($full_object['value'] as $value){
        
        // $value is the 'value'
        $label = $full_object['choices'][$value];
    
    } ?>