I have a community blog at thelazy.info . I want to tag users based on their colleges and assign a role known as "College Owner" which will have permissions to edit users belonging to his colleges. How can I go about it?
Tell me more
×
WordPress Answers is a question and answer site for
WordPress developers and administrators. It's 100% free, no registration required.
|
You can tag users using the get/add_option function; each option is concidered a tag and its value is the users id's array |
|||
|
|
|
Wordpress has no multi-level user and group ownerships / permissions by default. So what you are asking for you need to implement on your own by extending the database and the program. You can then fine-grained control what users are allowed to do and what not. Like Zack suggested, this can be combined with custom user profile fields, but you can do anything you like with a system of your own. |
|||
|
|
|
You might want to check out the following article. I think it's what you want. |
|||
|
|