Home › Forums › Add-ons › Repeater Field › Update a nested repeater field › Reply To: Update a nested repeater field
Thanks you were missing an array of arrays
$repeater = 'field_62e5ba2733cea'; // field key of repeater
$value_john = array(
// nested array for every row of repeater
array(
// field key => value pairs for each sub field
'field_62e5ba3233ceb' => 'block title', // title field
'field_62e6bd4119dc1' => array(
// nested repeater
// field key => value pairs for each sub field
array(
'field_62e6bd5e19dc3' => 'link title',
'field_62e6bd6419dc4' => 'link url',
'field_62e6bd6a19dc5' => 'link fa icon',
),
array(
'field_62e6bd5e19dc3' => 'link title',
'field_62e6bd6419dc4' => 'link url',
'field_62e6bd6a19dc5' => 'link fa icon',
),
),
// next row in nested repeater
),
// next row in repeater
);
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.