Skip to content

Instantly share code, notes, and snippets.

@robertannett
Created August 11, 2021 10:42
Show Gist options
  • Save robertannett/60ad8e7bc3bfab1e1e253c19333a29cf to your computer and use it in GitHub Desktop.
Save robertannett/60ad8e7bc3bfab1e1e253c19333a29cf to your computer and use it in GitHub Desktop.
SQL - Update Wordpress Password
UPDATE wp_users
SET user_pass= MD5('password')
WHERE ID = 9999;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment