Skip to content

Instantly share code, notes, and snippets.

@akiyamaSM
Last active November 14, 2019 10:09
Show Gist options
  • Select an option

  • Save akiyamaSM/37ebc8324e0bb413661d04d1ac513a6b to your computer and use it in GitHub Desktop.

Select an option

Save akiyamaSM/37ebc8324e0bb413661d04d1ac513a6b to your computer and use it in GitHub Desktop.
Create a user in Wordpress
$username = 'username123';
$password = 'azerty321';
$email = 'example@example.com';
if (username_exists($username) == null && email_exists($email) == false) {
$user_id = wp_create_user( $username, $password, $email );
$user = get_user_by( 'id', $user_id );
$user->remove_role( 'subscriber' );
$user->add_role( 'author' );
}
// ROLES :
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment