Skip to content

Instantly share code, notes, and snippets.

@lscott3
Created December 3, 2013 19:57
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 lscott3/7776415 to your computer and use it in GitHub Desktop.
Save lscott3/7776415 to your computer and use it in GitHub Desktop.
Create user in wordpress mysql
INSERT INTO `database`.`wp_users` (`ID`, `user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `user_status`, `display_name`) VALUES ('4', 'test', MD5('test@1'), 'Test User', 'test@gmail.com', 'http://www.google.com/', '2011-06-07 00:00:00', '', '0', 'Test User');
INSERT INTO `database`.`wp_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES (NULL, '4', 'wp_capabilities', 'a:1:{s:13:"administrator";s:1:"1";}');
INSERT INTO `database`.`wp_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES (NULL, '4', 'wp_user_level', '10');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment