Advertisement
GochiSiyan

contributor file upload

Apr 12th, 2021
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. if ( current_user_can('contributor') && !current_user_can('upload_files') )
  2. add_action('admin_init', 'allow_contributor_uploads');
  3. function allow_contributor_uploads() {
  4. $contributor = get_role('contributor');
  5. $contributor->add_cap('upload_files');
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement