Skip to content

Instantly share code, notes, and snippets.

@tuanbbhero
Created October 26, 2018 15:16
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 tuanbbhero/f9574ab3443832c0b8133ffe9a75399f to your computer and use it in GitHub Desktop.
Save tuanbbhero/f9574ab3443832c0b8133ffe9a75399f to your computer and use it in GitHub Desktop.
Create and Amin Account in WordPress with functions.php
function wpb_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','wpb_admin_account');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment