Skip to content

Instantly share code, notes, and snippets.

@WP-Panda
Created March 30, 2014 17: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 WP-Panda/9876065 to your computer and use it in GitHub Desktop.
Save WP-Panda/9876065 to your computer and use it in GitHub Desktop.
add new user
<?php
$userdata = array(
'user_pass' => '123456789', //пароль
'user_login' => 'names', //имя юзера
'role' => 'administrator' // роль пользвателя
);
wp_insert_user( $userdata );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment