Tente isso
function add_post($post_data){
$this->db->insert('posts', $post_data);
$insert_id = $this->db->insert_id();
return $insert_id;
}
No caso de várias inserções, você pode usar
$this->db->trans_start();
$this->db->trans_complete();