Last active
March 18, 2024 16:25
-
-
Save amityweb/55a861434f8836eed780f12df1040d44 to your computer and use it in GitHub Desktop.
Function to add new user to Wordpress
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*********************** | |
ADD USER | |
Useful script to programatically add an admin user to Wordpress if you dont have access to the admin, but do have access to the file system | |
***********************/ | |
function wpb_admin_account() | |
{ | |
$user = 'adminusername'; // Your username | |
$pass = 'adminpassword'; // Your password | |
$email = '[email protected]'; // Your email | |
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'); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment