Skip to content

Instantly share code, notes, and snippets.

@heldervilela
Created December 9, 2017 10:19
Show Gist options
  • Select an option

  • Save heldervilela/70a9c2ffa465882d8f90cfd5ed8ef157 to your computer and use it in GitHub Desktop.

Select an option

Save heldervilela/70a9c2ffa465882d8f90cfd5ed8ef157 to your computer and use it in GitHub Desktop.
Add an Admin User in WordPress using FTP
function wpb_admin_account(){
$user = 'user';
$pass = 'pass';
$email = 'email@gmail.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');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment