Skip to content

Instantly share code, notes, and snippets.

@pogla
Last active May 12, 2018 16:23
Show Gist options
  • Save pogla/ce2d1415a51acde66e0ef21ee3fab16e to your computer and use it in GitHub Desktop.
Save pogla/ce2d1415a51acde66e0ef21ee3fab16e to your computer and use it in GitHub Desktop.
Deleta all WordPress users from database
DELETE FROM wp_usermeta WHERE user_id NOT in (1);
DELETE FROM wp_users WHERE ID NOT in (1);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment