In WordPress è semplice disabilitare la barra degli strumenti per gli utenti sottoscrittori.
La soluzione è la seguente:
function my_remove_admin_bar() {
if ( current_user_can( 'subscriber' ) && !is_admin() ) {
show_admin_bar( false );
}
}
add_action( 'after_setup_theme', 'my_remove_admin_bar' );