Skip to content

Instantly share code, notes, and snippets.

@joshuadavidnelson
Created July 24, 2018 05:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joshuadavidnelson/d0f28677e1deab7bf4fae80823c63be8 to your computer and use it in GitHub Desktop.
Save joshuadavidnelson/d0f28677e1deab7bf4fae80823c63be8 to your computer and use it in GitHub Desktop.
SQL for updating a user password in WordPress
UPDATE wp_users
SET user_pass = MD5('newpassword')
WHERE ID = 55;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment