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’re reaching out to our multilingual users to ask for help in translating ACF 6.1. Help make sure the latest features are available in your language here: https://t.co/TkEc2Exd6U
— Advanced Custom Fields (@wp_acf) May 22, 2023
© 2023 Advanced Custom Fields.
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 Cookie Policy. If you continue to use this site, you consent to our use of cookies.