Support

Account

Home Forums General Issues Updating fields in Groups in acf/save_post Reply To: Updating fields in Groups in acf/save_post

  • The documentation for this seems to be incomplete. By trail and error I used the following solution:

    //Group your data into an array:
    $values = array(
    	
    	'street'	=>	$street,
    	'number'	=>	$number,
    	'zipcode'	=>	$zipcode,
    	'city'		=>	$city
    	
    );
    
    //Update the field using this array as value:
    update_field( 'selector', $values, $post_ID );