Skip to content

Instantly share code, notes, and snippets.

@jbrz0
Created May 5, 2016 13:51
Show Gist options
  • Save jbrz0/d6e06b136af9225dc92cdf0aebcfd086 to your computer and use it in GitHub Desktop.
Save jbrz0/d6e06b136af9225dc92cdf0aebcfd086 to your computer and use it in GitHub Desktop.
Add a WP user using functions.php in theme file
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