Tagging users in WordPress

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?

4 Answers
4

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.

Leave a Comment