Skip to content

Instantly share code, notes, and snippets.

@Sirvijver
Created September 2, 2021 11:14
Show Gist options
  • Select an option

  • Save Sirvijver/e9510eabffa96f3fb6d58fe2c94d1fb5 to your computer and use it in GitHub Desktop.

Select an option

Save Sirvijver/e9510eabffa96f3fb6d58fe2c94d1fb5 to your computer and use it in GitHub Desktop.
used to create a new user via the 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