Hi, i’m trying to add a row to a repeater (rooms_id) in options page with this code:
$row = array(
'room' => $term['term_id'],
'id' => $arr['id']
);
$i = add_row('rooms_id', $row);
where $term[‘term_id’] and $arr[‘id’] are numbers, but it doesn’t work.
Any suggestions?
I solved the problem:
$row = array(
'room' => $term['term_id'],
'id' => $arr['id']
);
$i = add_row('rooms_id', $row, 'option');