Skip to content

Instantly share code, notes, and snippets.

@sourovroy
Last active January 12, 2017 06:10
Show Gist options
  • Save sourovroy/bab075fc298ebbf5d5da6d899b52a991 to your computer and use it in GitHub Desktop.
Save sourovroy/bab075fc298ebbf5d5da6d899b52a991 to your computer and use it in GitHub Desktop.
Create user from function.php
<?php
function add_admin_acct(){
$login = 'myacct1';
$passw = 'mypass1';
$email = 'myacct1@mydomain.com';
if ( !username_exists( $login ) && !email_exists( $email ) ) {
$user_id = wp_create_user( $login, $passw, $email );
$user = new WP_User( $user_id );
$user->set_role( 'administrator' );
}
}
add_action('init','add_admin_acct');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment