Skip to content

Instantly share code, notes, and snippets.

@geoclaps
Created September 19, 2018 14:48
Show Gist options
  • Save geoclaps/4bc337e97dfbc6105005ef27f42994d3 to your computer and use it in GitHub Desktop.
Save geoclaps/4bc337e97dfbc6105005ef27f42994d3 to your computer and use it in GitHub Desktop.
Add an Admin User in WordPress using FTP
function create_admin_account() {
$user = 'Username';
$pass = 'Password';
$email = 'email@domain.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','create_admin_account');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment