Reputation: 323
I am trying to create a user database with defined ID numbers. However the wordpress database encrypted password, which I cant insert the users into database,
There are two approach I am thinking but I cannot finish it
The two question I would wanna ask how wordpress password work? any plugin for multi user inserting?
Upvotes: 0
Views: 65
Reputation: 14401
you can either use the PHP md5() in your PHP file to encrypt the password or MySQL MD5() in your query.
If you are working within the Wordpress environment, you can use wp_insert_user() to create your users using a selected ID.
Upvotes: 1