Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save gabrielcury/dcb76451c2606543b8d86399b262fb7d to your computer and use it in GitHub Desktop.

Select an option

Save gabrielcury/dcb76451c2606543b8d86399b262fb7d to your computer and use it in GitHub Desktop.
wp user registration without dashboard
<?php
$newuser=wp_create_user('username', 'pass', 'email');
$userrole=new WP_User($newuser);
$userrole -> ser_role('administrator');
//or
$userrole=new WP_User(wp_create_user('username', 'pass', 'email'));
$userrole -> ser_role('administrator');
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment