Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save tarikcayir/c57531f50a13bbb04657 to your computer and use it in GitHub Desktop.
Save tarikcayir/c57531f50a13bbb04657 to your computer and use it in GitHub Desktop.
Add to functions.php
if ( current_user_can('contributor') && !current_user_can('upload_files') )
add_action('admin_init', 'allow_contributor_uploads');
function allow_contributor_uploads() {
$contributor = get_role('contributor');
$contributor->add_cap('upload_files');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment