Skip to content

Instantly share code, notes, and snippets.

@michaelbonner
Created March 12, 2024 18:12
Show Gist options
  • Save michaelbonner/e052321e442f73b86b04e32cc4c48e09 to your computer and use it in GitHub Desktop.
Save michaelbonner/e052321e442f73b86b04e32cc4c48e09 to your computer and use it in GitHub Desktop.
Create WordPress user function
<?php
add_action('init', function () {
$user = 'Bootpack';
$pass = '{{someRandomPassword}}';
$email = 'dev@bootpackdigital.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');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment