general - group
id - text
name - text
packages - flexible
products - repeater
id - text
name - text
$created_post_id = wp_insert_post( $post, true );
// add row
$post_fields = [
'acf_fc_layout' => 'river',
'general' => [
'id' => 'INSRETED_ID',
'name' => 'INSRETED_NAME',
]
];
add_row( 'field_5f26d925e4b6b', $post_fields, $created_post_id );
// add subrow
$sub_row_fields = [
'acf_fc_layout' => 'sun',
'products' => [
[
'id' => 'sub_id',
'name' => 'sub_name'
]
]
];
add_sub_row( array('supplier', 1, 'packages'), $sub_row_fields, $created_post_id );