Skip to content

Instantly share code, notes, and snippets.

@austinginder
Last active April 11, 2017 22:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save austinginder/a54ec0d9d64159fb4edd to your computer and use it in GitHub Desktop.
Save austinginder/a54ec0d9d64159fb4edd to your computer and use it in GitHub Desktop.
Multisite export to single install
# Delete all orphans user meta in WordPress
DELETE FROM wp_usermeta
WHERE NOT EXISTS (
SELECT * FROM wp_users
WHERE wp_usermeta.user_id = wp_users.ID
);
# Remove multisite only columns in users
alter table wp_users drop column spam;
alter table wp_users drop column deleted;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment