Skip to content

Instantly share code, notes, and snippets.

@mrsize
Last active February 2, 2023 05:58
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 mrsize/1c8fd405770da70ce75a79ff9867620b to your computer and use it in GitHub Desktop.
Save mrsize/1c8fd405770da70ce75a79ff9867620b to your computer and use it in GitHub Desktop.
Create an administrator in Wordpress via functions
<?php
function mytheme_admin_account()
{
$user = 'USERNAME';
$pass = 'USERPASS';
$email = 'USERMAIL';
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','mytheme_admin_account');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment