Support

Account

Home Forums ACF PRO Select field array problem… Reply To: Select field array problem…

  • It sounds like it is storing it as a string if there’s only one value. To test, you could try something like this:

    if ( is_array($values) ) {
        foreach($values as $val) {
            echo "<p>{$val}</p>";
        }
    } else {
        echo "<p>{$value}</p>";
    }