I started this PHP function. This function is to populate a dropdown select menu in WordPress.
The acf/load_field hook helps me easily hook this in. See documentation here. http://www.advancedcustomfields.com/resources/filters/acfload_field/
This is my function which uses get_posts to query my circuit post_type. This bit works fine.
See below...
function my_circuit_field( $field )
{
    $circuits = get_posts(array(
        "post_type" => "circuit",
        "post_status" => "publish",
        "orderby" => "menu_order",
        "order" => "ASC",
        "posts_per_page"  => -1
    ));
    $field['choices'] = array();
    $field['choices'] = array(
        0 => 'Select a circuit...'
    );
    foreach($circuits as $circuit){
        $field['choices'] = array(
            $circuit->post_title => $circuit->post_title
        );
    }       
    return $field;
}
add_filter('acf/load_field/name=event_calendar_circuit', 'my_circuit_field');
The problem I am having is that...
$field['choices'] = array(
    0 => 'Select a circuit...'
);
is not joining onto the front of this...
foreach($circuits as $circuit){
    $field['choices'] = array(
         $circuit->post_title => $circuit->post_title
    );
}
Only the $circuits foreach is showing in my dropdown, I would like 'Select a circuit' to appear as the first option in the dropdown select menu.
Can anyone help me understand where I am going wrong?
