When a new blog is created the following actions need to take place.
The code so far:
function new_blogs_setting( $blog_id , $user_id ) {
add_user_to_blog($blog_id, 4924, 'editor');
return;
}
add_action('wpmu_new_blog', 'new_blogs_setting');
It automatically adds the editor account and assigns level 7 access.
Perhaps I just need a line to demote the new admin from level 10 to level 6?
Or promote the editor to level 8 access and demote the new admin to level 7?