Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save JarrydLong/944b271614a75e00f368c9de8fdf4fca to your computer and use it in GitHub Desktop.
Save JarrydLong/944b271614a75e00f368c9de8fdf4fca to your computer and use it in GitHub Desktop.
<?php //do not copy
add_filter('query', function ($query) {
if (strpos($query, 'CREATE TABLE') !== false || strpos($query, 'ALTER TABLE') !== false) {
error_log("DBDelta altering query: " . $query);
}
return $query;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment