Home › Forums › Feedback › Field name vs field key in update_post › Reply To: Field name vs field key in update_post
It is usually always better to use field keys vs field names for updating fields. The reason for this is for fields that do not yet exist because ACF will not know what type of field the field name refers to when the field does not exist yet.
I am assuming that you are referring to a “group” field in [group-name]_[subfield-name]
an not a “Field Group”. The group field is a special type of repeater field. When using update field you would do something like
$values = array(
// sub field key => value of each sub field
'key_12345' => 'sub field 1 value',
'key_23456' => 'sub field 2 value'
);
update_field($group_field_key, $values);
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.