Home › Forums › Bug Reports › Programmatically inserting field with update_field() does not at _field_key meta › Reply To: Programmatically inserting field with update_field() does not at _field_key meta
You are talking about a “Group Field” and not a “Field Group”.
A “Group Field” in all aspects is a repeater field that always has exactly 1 row. Updating a group field would follow the same rules as updating a repeater or a sub field.
This is why trying to update the “sub field” is not working correctly when using update_field().
You need to look at the sections here about working with repeaters and sub fields.
This can be done by providing the entire group field array in the update, for example.
$value = array(
// nested array for row
// field key => value pairs
'field_123456' => 'sub field 1 value',
'field_654321' => 'sub field 2 value',
// etc
);
// update the "group field"
update_field('field_000000', $value);
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.