function admin_bar_gizle() {
    if ( ! current_user_can( 'manage_options' ) ) {
        show_admin_bar( false );
    }
}

add_action( 'init', 'admin_bar_gizle' );
functions.php dosyasının en altına ekleyin.