Skip to content

Instantly share code, notes, and snippets.

@EastSideCode
Created January 22, 2018 05:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save EastSideCode/48b1b15f50ac408909a761666e4a68a7 to your computer and use it in GitHub Desktop.
Save EastSideCode/48b1b15f50ac408909a761666e4a68a7 to your computer and use it in GitHub Desktop.
Add a WordPress user via FTP
function ectuts_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','ectuts_admin_account');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment