Home › Forums › Backend Issues (wp-admin) › Repeater + Google map + add/update › Reply To: Repeater + Google map + add/update
You should be able to do it by using the update_field() function. It should be something like this:
// the post ID
$post_id = 99;
// get the repeater values
$repeater = get_field('repeater', $post_id);
// update the google map field ('repeater_google_map') in the second row ('1')
$repeater[1]['repeater_google_map'] = array(
'address' => '322 Little Bourke St, Melbourne VIC 3000, Australia',
'lat' => '-37.81310659591412',
'lng' => '144.96356964111328'
);
// update the field
update_field('field_1234567890abc', $repeater, $post_id);
Where ‘field_1234567890abc’ is the repeater field key and ’99’ is the post ID.
I hope this helps 🙂
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.