How can I allow the Editor Role to change Theme Settings?

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 precaution.

I created a new user as Editor therefore.

Read More

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 of it? He should basically be able to do anything an Administrator can do reg. the Theme, probably even changing themes.

Related posts

Leave a Reply

5 comments

  1. 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.

  2. Since this is the 1st hit on google for this question, I feel this is the right place for an update:

    For me, I couldn’t get it to work via edit_theme_options. Then I read the plugin source and found out that it’s actually manage_options. And it worked.

    tl;dr:

    $role_object = get_role( 'editor' );
    $role_object->add_cap( 'manage_options' );
    

    works for me (in the year 2014)

  3. This is old, but here’s a newer way you could achieve this:

    add_filter( 'user_has_cap',
    function( $caps ) {
        if ( ! empty( $caps['edit_pages'] ) )
            $caps['edit_theme_options'] = true;
        return $caps;
    } );