I’m looking for the simplest way to limit a WordPress user to edit only his own pages (that is pages he is author of). I’ve read about some users manager plugins but for my needs they seems overkill and so I wonder if it is possible to obtain the same result adding some code lines to functions.php or something similar.
Leave a Reply
You must be logged in to post a comment.
you can do this by adding a new role like so :
This setting is saved to the database (in table wp_options, field wp_user_roles), so it might be better to run this on theme/plugin activation
Returns a WP_Role object on success, null if that role already exists.
Example
Create a new “Basic Contributor” role.
add_role() is located in wp-includes/capabilities.php.
for more clarification look in this article