• I have a private site and will require registration. Is there any way to take my list of names and their info (those I want to be registered as members) and import them into the site so they are already registered and do not have to register one by one?
    Thanks in advance!
    YTC

Viewing 1 replies (of 1 total)
  • Hi,

    If you manage to export your user list and parse it, something like this may work perfectly :

    foreach($users as $user){
    wp_insert_user( array ('user_login' => $user->login, 'user_password' => $user-password) ) ;
    }

    Take a look to :
    for more informations.

Viewing 1 replies (of 1 total)
  • The topic ‘Is there any way to import a file of names and info to register them?’ is closed to new replies.