Home › Forums › Backend Issues (wp-admin) › Populate field choices with wp_insert_post › Reply To: Populate field choices with wp_insert_post
Ok, I see.
So should I change my code to this:
function xml_data(){
$data_array; //my array with my data
$field = get_field_object('field_1');
$field['choices'] = array();
foreach($$data_array as $choice){
$field['choices'][ $choice ] = $choice;
}
return $field;
}
add_action('wp_insert_post', 'xml_data');
apply_filters( 'acf/prepare_field', 'xml_data' );
Could it work that way?
Thank you
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.