Tell me more ×
WordPress Answers is a question and answer site for WordPress developers and administrators. It's 100% free, no registration required.

I've just setup a new Blog for a friend and thought it's better to not give him Administrator Access right away as a pre-caution.

I created a new user as Editor therefore.

But then I saw that this user can not change the Theme Settings like Background and Header.

Is there an easy way to allow the Editor Role to edit any theme settings in Twenty Ten or a Child or it? He should basically be able to do anything an Adminsitor can do reg. the Theme, probably even changing themes.

share|improve this question

3 Answers

up vote 4 down vote accepted

you can add capabilities to the editor role using the role object and add_cap from you functions.php

<?php
   // get the the role object
   $editor = get_role('editor');
   // add $cap capability to this role object
   $editor->add_cap('edit_theme_options');
?>

you can also remove capabilities:

$editor->remove_cap('delete_posts'); 

just take a look at the list of capabilities and what each one means.

share|improve this answer
Cool, that did work! For the shorties: get_role('editor')->add_cap('edit_theme_options'); :) – hakre Mar 25 '11 at 0:55
@hakre FYI Direct variable assignments like that a()->b() will not work in PHP versions prior to 5. – hitautodestruct Apr 10 at 8:40

Don't they need the "edit_themes" capability? You can use Justin Tadlocks plugin http://wordpress.org/extend/plugins/members/ to edit the capabilities associated with each role.

share|improve this answer
Thanks for the answer. – hakre Mar 25 '11 at 0:56
This answer just got me out of a bind. Thanks! – Doug Dec 22 '11 at 16:34

Another great plugin is User Role Editor (http://wordpress.org/extend/plugins/user-role-editor/). It is similar to Members, but much more basic and simple to use. Plus, the developers are always around to listen to feedback and offer assistance, if needed.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.