Advertisement
GochiSiyan

subscriber file upload

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