How to enable the theme editor cap for an editor role?

The edit_themes capability is what allows access to Appearance > Theme Editor:

function wpse243341_modify_editor_role() {
    $role = get_role( 'editor' );
    $role->add_cap( 'edit_themes' ); 
}
add_action( 'admin_init', 'wpse243341_modify_editor_role');

Leave a Comment