You can do that hooking into wpmu_new_blog
and then creating the user if it does not exists, and adding that user to the blog being created.
To do so, you will use a code like this ( only for 1 user) , as a network enabled plugin or on the main theme functions.php
add_filter('wpmu_new_blog','wpse_29543_new_blog');
function wpse_29543_new_blog($blogid){
$user_name="user";
$user_password="password";
$user_email="[email protected]";
$role="editor";
$user_id = username_exists( $user_name );
if ( !$user_id ) {
$user_id = wp_create_user( $user_name, $user_password, $user_email );
}
add_user_to_blog( $blogid, $user_id, $role );
}
Related Posts:
- How to migrate wordpress users from one blog to another
- How to add multiple existing users to a multisite site?
- How to auto-generate names for guest users who leave comments?
- WordPress user role with create user capability?
- If the current user is an administrator or editor
- Editor can create any new user except administrator
- How do I add a field on the Users profile? For example, country, age etc
- How To Add Custom Form Fields To The User Profile Page?
- Multiple developers / editors working on a site in progress
- How do I display logged-in username IF logged-in?
- How to allow an user role to create a new user under a role which lower than his level only?
- user_login vs. user_nicename
- How to programatically change username (user_login)?
- Why are my roles not visible in a Multi-site/Network?
- Change the Author Slug from Username to Nickname
- Remove Ability for Other Users to View Administrator in User List?
- How to use same email for multiple users
- Difference between update_user_meta and update_user_option
- Where can I find documentation on what characters are allowed in user names and why?
- Make display name unique
- Make WooCommerce pages accessible for logged in users only
- Find out if logged in user is not subscriber
- WordPress usermeta scaling for thousands of users
- How to get WordPress Username in Array format
- Display user registration date
- Is there a is_user_logged_in() for multisite?
- Get multiple roles with get_users
- get_user_meta() doesn’t include user email?
- Confirmation required on email change
- How to Merge Two Authors Into One?
- Whats the best way to share user data across multiple WordPress websites?
- get_current_user_id() returns 0?
- How to get userid at wp_logout action hook?
- Groups of capabilities: users with multiple roles?
- Is there a way to merge two users?
- User-edit role setting distinct from wp_capabilities? [closed]
- List users by last name in WP_User_Query
- What’s the difference between the capability remove_users and delete_users?
- How to restrict access to uploaded files?
- Automatically delete inactive users after 2 months
- How to change user_login with wp-cli?
- Delete all subscribers from wp_users and wp_usermeta a few thousand at a time
- Email user when password is reset by admin
- Replacing the WordPress password validation
- Ban a user and end their session
- Allowing users to edit only their page and nobody else’s
- How can 2 blogs share the same users
- alphabetically order role drop-down selection in dashboard
- WordPress auto login after registration not working
- WordPress Multisite allow site admin to add user without email confirmation
- wordpress multisite, how to keep user on subdomain throughout registration process?
- Change the author slug from nickname to ID
- Execute a function when admin changes the user role
- How to let contributors to create a new revision(draft) editing their published posts
- how to use joomla password format in wordpress?
- Network not displaying all sites and users
- How to do get_users() with multiple meta_keys
- Disallowing Users of a Custom Role from Deleting or Adding Administrators?
- What the user_status column?
- WordPress Multisite – When a user signs-up on main site, how to add the user to a subsite
- How to limit users to one comment per post
- Different back-end language for different users?
- Hide Admin Menu for Specific User ID who has administrator Role
- How to use alias domain for multisite installation?
- Migrating WordPress users into Disqus
- Problem with Hebrew characters in username
- Is there an upper limit for users in WP?
- How to display the status of users (online – offline) in archive.php
- Give to site admin the option to “skip confirmation email” when adding new user
- Remove email verification when new user register
- How to change user`s avatar?
- How to set up User email verification after Signup?
- Allow up to 5 Concurrent Login Sessions
- How to let user set password on registration
- How to hide media uploads by other users in the Media menu?
- Show admin bar only for some USERS roles
- How to display custom user meta from registration in backend?
- Allowing an email as the username?
- How to work around “that email address has already been used” error?
- Get the name of user who updated post
- Disable delete user
- Grouping users under parent user
- How to get the Gravityform entry ID from current user’s form submission? [closed]
- Retrieve all users from wordpress database via REST/JSON API
- Different back-end colour scheme for the different sites of a multisite
- Is there a way to set a user profile to Draft?
- Set up collaborative site
- Multisite/network–automatic self-registration, blog setup
- Display edit link if post author is current user
- Check if specific username is logged in
- Best way to send users password?
- Limiting the number of users
- How can I get users email (and additional data) from the rest API?
- Force display name as full name
- Get users with atleast one post
- edit profile validation refreshes all field if missing wordpress
- How to update user role without logout
- How to hide “Filter user list” from “All Users” screen
- How to create a template for a custom URI associated with the user
- How to order users alphabetically by their last name?