Post Pic

WordPress tip: Allow contributors to upload files

If you have contributors to your blog, you probably got annoyed to see that they can’t upload files and images while writing guest posts for you. Today’s recipe will solve the problem, allowing contributors to upload files to your blog.

Nothng hard with this code: The only thing you have to do is to paste it in your functions.php file:

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');
}

Big thanks to Altaf Sayani for his contribution to WpRecipes!

One Response

Jan 02 2012 19:05

Nothing hard? I copied it to my functions.php and the follow error was reported:

Parse error: syntax error, unexpected ‘&’ in /hermes/web03/b398/pow.nandito98/htdocs/blog/portugal/wp-content/themes/arthemia/functions.php on line 12

What to do? Every link I click dont open…

Trackbacks:

Leave a Comment

* Name, Email, Comment are Required