add_filter('acf/load_field/name=leverancier', 'wbmz_vul_leveranciers_veld');
function wbmz_vul_leveranciers_veld( $field ) {
    $field['choices'] = array();
    $choices = get_terms( array(
											    'taxonomy' => 'leverancier',
													'number' => 0, // alle
													'orderby'	=> 'title',
											    'hide_empty' => false,
											));

    foreach ( $choices as $choice ) :
        $field['choices'][$choice->term_id] = $choice->name;
    endforeach;
    return $field;
}
Geef een reactie 0