Tagged Questions
0
votes
1answer
28 views
How can I have different groups of editors only allowed to edit certain parent+subpages?
I've tried a bunch of different plugins, including Role Scoper, Advanced Access Manager, User Account Manager and more, to accomplish this but can't seem to get it working right.
Basically, the ...
2
votes
2answers
63 views
What is the difference between “create_users” and “add_users” capabilities?
The codex lists both create_users and add_users under roles and capabilities.
Does anyone know what is the difference between these two?
0
votes
1answer
549 views
Create a User Role with permissions to only upload files to the media library?
Some of the employees at my organization need to be able to upload files to a folder and share a link with others. It’s primarily documents like pictures, pdf’s and Word documents. And instead of ...
4
votes
2answers
2k views
How do I create a custom role capability?
I wish to create a custom capability for accessing the interface of my plugin.
Should the plugin manage adding this capability to all the administrator accounts on activation?
If so: Does WordPress ...
2
votes
1answer
164 views
Add user capability and check against it
I just realized the following:
// Call the current user info
global $current_user;
// Add a capability
// and set the 2nd argument ($grant) to false
$current_user->add_cap( 'some_cap', false );
...
3
votes
1answer
225 views
The 'user_has_cap' hook seems to take two page loads to trigger
This question relates to another question I asked recently (http://wordpress.stackexchange.com/questions/29009/how-to-assign-specific-users-the-capability-to-edit-specific-pages-posts-cus/), the ...
4
votes
1answer
2k views
How to assign specific users the capability to edit specific pages / posts / custom post types
I'm trying to implement what seemed like a relatively straight forward idea, basically I am building an access control plugin to control viewing and editing of a custom post type (in this case ...
1
vote
1answer
1k views
Allow Users Access to Custom Post Type Only
I am in a similar situation to this person, only I need a bit more hand-holding. I don't have a good understanding of php but can cut and paste code with the best of them.
I have Justin Tadlock's ...
1
vote
1answer
300 views
Capability for allowing user to post own comments without moderation
I work at a radio station that has several WP user roles -- for simplicity sake, let's say Admin, Programmer, Subscriber, in decreasing order of ability.
Currently, Admin users need to approve ...
5
votes
1answer
328 views
Disallowing Users of a Custom Role from Deleting or Adding Administrators?
(Moderator's note: The original title was "Custom User Role Restrictions")
A project I am working on requires me to create two new user roles - one for the owner of the website and the other for ...