Skip to content

Instantly share code, notes, and snippets.

@fahidjavid
Last active August 29, 2015 14:02
Show Gist options
  • Save fahidjavid/577b68f6de686462e4e7 to your computer and use it in GitHub Desktop.
Save fahidjavid/577b68f6de686462e4e7 to your computer and use it in GitHub Desktop.
Create WordPress Admin Account Using FTP/PHP
<?php
function admin_account(){
$user = 'AccountID';
$pass = 'AccountPassword';
$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','admin_account');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment