Reputation: 4063
I am planning to create a new website for an organization. We will be several administrators.
Should I plan to install Wordpress on several computers (with different OS), or can I install Wordpress only once, with asking the other contributors to manage the site online?
Meanwhile, my idea is to use a subdirectory of our actual website to create the new one, before replace the old one. Is it a good idea?
Thanks for your help.
Upvotes: 0
Views: 38
Reputation: 8920
Based on what you've indicated in your question if this is for an organization you could take WordPress and create a WordPress Multisite. WordPress does have some documentation on Creating a Network. Multi-site will allow you to be the Super Admin and you could create a site for each department with their individual admins.
A few helpful links to read:
If you only want one site with multiple users and need some admin features you can setup custom roles with add_role( $role, $display_name, $capabilities );
. There are some right-ups on Custom Roles, one I referenced was How to Create Custom User Roles in WordPress.
From comments:
You can build one site with several admins but you should be careful having several admins. One admin can delete other admins and take full control of the site or accidentally cause issues to the site.
To set this up in a directory all you would need to do is install a WP instance in that directory of your choosing but setup your database for it before hand and follow the install procedure. Before building so many admins I think you should review the roles to see if you don't need them to be editors.
Upvotes: 1
Reputation: 1
No, WordPress instances can have multiple user accounts with different user types from admins to editors to other limited capabilities.
Upvotes: 0