Advertisement
GochiSiyan

subscribe allow upload

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