Skip to content

Instantly share code, notes, and snippets.

@Pseric
Created March 5, 2014 14:33
Show Gist options
  • Save Pseric/9368307 to your computer and use it in GitHub Desktop.
Save Pseric/9368307 to your computer and use it in GitHub Desktop.
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