It works for the main blog too, thought the search function isn’t all that useful given there would only be a single blog but all the other functions work with the main blog.
All you’d need to do to get this setup is to change the default role for the main blog from subscriber to contributor and disable blog registration. Also, you may want to hack at the code to remove things such as the blog directory, the list of user blogs, etc. but this is optional.
I have done exactly what you are talking about at http://buglenotes.com. I set default role to Author, turned off new blog creation, and then modified menus as nec to remove personal blog options (so as not to confuse). I also renamed the News menu item to Blog. Now everyone contributes posts to a “central” blog. So far so good. Of course, this could all backfire after launch
Many thanks for your replies. I’ve progressed a bit now with the site.
@gogoplata “All you’d need to do to get this setup is to change the default role for the main blog from subscriber to contributor” – I know this is possible on classic WordPress though strangely I cannot find this option in either: /wp-admin/wpmu-users.php or /wp-admin/users.php ~ any ideas?
Thanks.
Try changing default role here (domain.com/wp-admin/wpmu-blogs.php?action=editblog&id=1) and here (domain.com/wp-admin/options.php) to “contributor” then do a test registration to see if the new user is a contributor or subscriber.
If that doesn’t work in wp-includeswpmu-functions.php change this:
add_user_to_blog(‘1’, $user_id, ‘subscriber’);
to this:
add_user_to_blog(‘1’, $user_id, ‘author’);
That should take care of all future signups, however existing users will be unchanged. If you don’t have too many users yet you can simply manually change them to authors, however, if you have a lot of signups check out this thread for a way to mass add users as authors.
Thanks wp-admin/options.php sorted it.