Skip to content

Instantly share code, notes, and snippets.

@jchck
Created December 7, 2014 00:09
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 jchck/662fcee4fb031f920121 to your computer and use it in GitHub Desktop.
Save jchck/662fcee4fb031f920121 to your computer and use it in GitHub Desktop.
SQL Query to Add WP User
INSERT INTO `databasename`.`wp_users` (`ID`, `user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `user_status`, `display_name`) VALUES ('21', 'username_here', MD5('password_here'), 'Justin Chick', 'hey@justinchick.com', 'http://justinchick.com/', '2014-12-06 00:00:00', '', '0', 'Justin Chick');
INSERT INTO `databasename`.`wp_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES (NULL, '21', 'wp_capabilities', 'a:1:{s:13:"administrator";s:1:"1";}');
INSERT INTO `databasename`.`wp_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES (NULL, '21', 'wp_user_level', '10');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment