Skip to content

Instantly share code, notes, and snippets.

@PetrovStark
Last active April 4, 2022 16:15
Show Gist options
  • Save PetrovStark/9070ddf965cb5daff57567402ab4d40a to your computer and use it in GitHub Desktop.
Save PetrovStark/9070ddf965cb5daff57567402ab4d40a to your computer and use it in GitHub Desktop.
Completely delete an user from a WordPress database. (Switch 0 to your user id)
DELETE FROM wp_users WHERE ID = 0;
DELETE FROM wp_usermeta WHERE user_id = 0;
DELETE FROM wp_comments WHERE user_id = 0;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment