Bu edit_theme_options
özellik kullanıcının kenar çubuğunu şu sayfada açıklandığı gibi düzenlemesine izin vermelidir:
http://codex.wordpress.org/Appearance_Widgets_SubPanel
Eklenecek kod functions.php
$role = get_role('editor');
$role->add_cap('edit_theme_options');
Düzenle:
Bu, düzenleyicinin temalara veya menülere erişmesini önlemek için çalışmalıdır
function custom_admin_menu() {
$user = new WP_User(get_current_user_id());
if (!empty( $user->roles) && is_array($user->roles)) {
foreach ($user->roles as $role)
$role = $role;
}
if($role == "editor") {
remove_submenu_page( 'themes.php', 'themes.php' );
remove_submenu_page( 'themes.php', 'nav-menus.php' );
}
}
add_action('admin_menu', 'custom_admin_menu');
Bunu test etme şansım olmadı, ancak bunları yalnızca doğrudan URL'yi yazarak erişebilecekleri menüden kaldırıyor.