(作成した) wordpress テーブルに新しい行を追加しようとしていますが、新しい行を追加するたびに、他のすべての行が削除され、DB テーブルを見ると、最後に挿入された行しか表示されません。
2 つの方法を試しましたが、同じ結果が得られます。
$ins_reply = $wpdb->insert( $table, array('itemid'=> $item_id, 'time' => $time, 'title' => '', 'text' => $content, 'author' => $user, 'deadline' => 0));
また
$query_insert = "INSERT INTO ".$table." (`itemid` ,`time` ,`title` ,`text` ,`deadline` ,`author`) VALUES ('".$item_id."', '".$time."', '', '".$content."', '0', '".$user."')";
$wpdb->query($query_insert);
私のコードで何が問題になっていますか?