Tagged Questions
1
vote
2answers
61 views
Role scoping for contributors down to the field level
We've been looking for a Wordpress plugin or system that lets you scope admin/contributor "roles" down to the field level. We have an immediate need for something like that, but totally coming up ...
0
votes
2answers
423 views
How to disable Edit Post and Allow only Custom Field?
What I would like to know is if it is possible to disable the edit post function in wordpress based on User's roles.
I try to explain better. Let's take an 'Editor' as role example:
I would like ...
1
vote
3answers
738 views
Saving custom profile fields
I'm adding a custom profile field to users of a specific role, like this :
function add_custom_profile_fields( $fields ) {
// get current user ID
$user = new WP_User( $_GET['user_id'] );
...