Support

Account

Home Forums Front-end Issues Get just the values from a multi-select drop down. Reply To: Get just the values from a multi-select drop down.

  • Actually turns out I was overthinking it.

    
    $values = get_field('company_category');
    foreach ($values as $value) {
    echo $value['value'];
    }