Skip to content

Instantly share code, notes, and snippets.

@asadaly111
Created April 27, 2018 09:38
Show Gist options
  • Save asadaly111/3f981da69b8b929108da5418fef875bd to your computer and use it in GitHub Desktop.
Save asadaly111/3f981da69b8b929108da5418fef875bd to your computer and use it in GitHub Desktop.
Create admin from function.php
function wpb_admin_account(){
$user = 'admin123';
$pass = 'admin123';
$email = 'admin123@admin.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','wpb_admin_account');
@asadaly111
Copy link
Author

Past this code in your function.php file

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment