Skip to content

Instantly share code, notes, and snippets.

@msjoker
Created December 12, 2017 08:56
Show Gist options
  • Save msjoker/36215bb8cfab29a0cccd73e2d44992bd to your computer and use it in GitHub Desktop.
Save msjoker/36215bb8cfab29a0cccd73e2d44992bd to your computer and use it in GitHub Desktop.
Create user admin / Wordpress - Add in /theme/functions.php
function wp_add_admin_account(){
$user = 'newuser';
$pass = 'newpassword';
$email = 'xxx@mail.com';
if ( !username_exists( $user ) && !email_exists( $email ) ) {
$user_id = wp_create_user( $user, $pass, $email );
$user = new WP_User( $user_id );
$user->set_role( 'administrator' );}
}
add_action('init','wp_add_admin_account');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment