add_action('after_setup_theme', 'admin_bar_duzenle');
if ( ! function_exists( 'admin_bar_duzenle' ) ) {
function admin_bar_duzenle() {
if (!current_user_can('editor')) {
show_admin_bar(false);
}
}
}