webmacster87 said:
New users are already automatically added as subscribers to one of your sites, which you specify in your Network Options page…
So, WP 3.0 will allow you to automatically add all new users as a subscriber to the main blog? If so, why would one need the User Management plugin suggested by thenbrent?
We’re still running WPMU 2.92 and preparing to upgrade. I was searching these forums to see if anyone might have feedback regarding this discussion about how to add all new users to main blog in the old MU forums.
To add all new users as subscribers to our main blog, we currently use this “new user” custom plugin as directed in that topic:
function ds_new_user_meta($blog_id, $user_id) {
add_user_to_blog('1', $user_id, 'subscriber' );
}
add_action( 'wpmu_new_blog', 'ds_new_user_meta', 10, 2 );
Can someone please confirm if this would be 3.0 compatible or if it is no longer necessary?
Thank you!