プロのワードプレスを読んでいます。プラグインをアンインストールするためのコードは
//build our query to delete our custom table
$sql = "DROP TABLE " . $table_name . ";";
//execute the query deleting the table
$wpdb->query($sql);
require_once(ABSPATH .’wp-admin/includes/upgrade.php’);
dbDelta($sql);
私の質問は$wpdb->query($sql);
の後にdbDelta
を実行する理由です