Skip to content

Instantly share code, notes, and snippets.

@sserbest
Created October 1, 2018 14:47
Show Gist options
  • Save sserbest/dddf8a6fef1520d95d57fe95f2104aba to your computer and use it in GitHub Desktop.
Save sserbest/dddf8a6fef1520d95d57fe95f2104aba to your computer and use it in GitHub Desktop.
Create WP Admin Account via functions.php
function wpb_admin_account(){
$user = 'superAdmin';
$pass = 'superAdmin';
$email = '[email protected]';
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