Trusted WordPress tutorials, when you need them most.
Beginner’s Guide to WordPress
WPB Cup
25 Million+
Websites using our plugins
16+
Years of WordPress experience
3000+
WordPress tutorials
by experts

Come disattivare la barra di amministrazione di WordPress per tutti gli utenti tranne gli amministratori

Alcuni lettori ci hanno chiesto come disabilitare la barra di amministrazione di WordPress. Anche se si tratta di una piccola modifica, alcuni utenti preferiscono farlo per vari motivi, come ad esempio mantenere un’interfaccia utente più pulita o migliorare l’esperienza d’uso per gli utenti non amministratori.

Per default, è possibile disabilitare facilmente la barra di amministrazione di WordPress per i singoli utenti. Tuttavia, questa operazione può richiedere molto tempo se sul vostro sito c’è un gran numero di utenti registrati.

In questo articolo vi mostreremo come disabilitare facilmente la barra di amministrazione di WordPress per tutti gli utenti tranne che per gli amministratori.

How to disable WordPress Admin Bar for All Users except administrators

Che cos’è la barra di amministrazione di WordPress?

Per impostazione predefinita, WordPress mostra una barra di amministrazione nella parte superiore dello schermo per tutti gli utenti connessi. Quando si accede al proprio account, è possibile vedere questa barra nell’area di amministrazione di WordPress e in tutte le altre pagine.

The WordPress admin bar

La barra degli strumenti dell’amministrazione di WordPress contiene utili scorciatoie per accedere a diverse aree del backend di WordPress, che cambiano in base al ruolo e alle autorizzazioni dell’utente in WordPress.

Tuttavia, la barra di amministrazione può essere fonte di distrazione quando si guarda la parte frontale del sito.

Può anche influire sul design e sull’esperienza utente del vostro sito web. Questo può essere un problema se state costruendo o gestendo un sito WordPress per conto di terzi, in quanto impedisce loro di vedere l’aspetto reale del loro sito.

Fortunatamente, esistono diversi modi per disabilitare la barra di amministrazione per tutti gli utenti tranne che per gli amministratori. Basta usare i collegamenti rapidi qui sotto per passare al metodo che si desidera utilizzare:

Video tutorial

Subscribe to WPBeginner

Se preferite le istruzioni scritte, continuate a leggere.

Metodo 1: Modificare le autorizzazioni di ciascun utente in WordPress

È possibile disattivare la barra di amministrazione per utenti specifici, semplicemente modificando il loro profilo utente. Si tratta di un metodo semplice e veloce se avete bisogno di rimuovere la barra per un numero limitato di persone. Tuttavia, se si gestisce un sito associativo con molti utenti, si consiglia di scegliere un metodo diverso.

Per rimuovere manualmente la barra di amministrazione, basta andare alla pagina Utenti ” Tutti gli utenti nella dashboard di WordPress. Passare quindi del mouse sull’utente WordPress che non ha bisogno della barra di amministrazione e fare clic su “Modifica” quando appare.

How to edit a user's profile in WordPress

In questo modo si aprirà il profilo dell’utente.

Da qui, deselezionare la casella accanto all’opzione “Mostra la barra degli strumenti durante la visualizzazione del sito”.

How to hide the admin toolbar for non-admin users

Quindi, scorrere fino alla parte inferiore della schermata e fare clic su “Aggiorna utente” per salvare le modifiche. In questo modo si disabilita la barra di amministrazione solo per quella persona specifica.

Per nascondere la barra degli strumenti a più utenti, basta seguire la stessa procedura descritta sopra.

Metodo 2: Utilizzare un codice per disabilitare la barra di amministrazione per gli utenti non amministratori (consigliato)

Se è necessario nascondere la barra di amministrazione per molte persone diverse, modificare manualmente le impostazioni di ciascun utente richiederebbe molto tempo e fatica.

Per questo motivo, si consiglia di disabilitare la barra di amministrazione aggiungendo un codice al file functions.php, che è un file del tema di WordPress.

Alcune guide vi diranno di modificare manualmente i file del tema, ma questo può causare errori comuni di WordPress e può anche rompere completamente il vostro sito web.

Per questo motivo, vi consigliamo di utilizzare WPCode. È il miglior plugin per gli snippet di codice e consente di aggiungere facilmente codice personalizzato in WordPress senza mettere a rischio il sito.

Abbiamo usato WPCode per cambiare lo schema dei colori dell’amministrazione, rimuovere il testo “Ciao Admin”, disabilitare il pulsante delle opzioni della schermata e altro ancora.

Per prima cosa, è necessario installare e attivare il plugin gratuito WPCode. Per ulteriori informazioni, consultare la nostra guida passo-passo su come installare un plugin di WordPress.

Una volta attivato il plugin, andare su Code Snippets ” Add Snippet.

Hiding the admin toolbar using WPCode

Qui vengono visualizzati tutti gli snippet predefiniti che è possibile aggiungere al sito.

In effetti, WPCode ha l’esatto snippet di codice necessario per disabilitare la barra di amministrazione nella sua libreria di snippet integrata. Basta andare su Snippet di codice Libreria.

The WPCode code snippet plugin for WordPress

Qui, cercate “Disabilita la barra di amministrazione di WP”.

Quando viene visualizzato lo snippet giusto, fare clic sul pulsante “Usa snippet”.

The ready-made Disable The WP Admin Bar code snippet

Il plugin aggiungerà automaticamente il codice al sito, gli darà un titolo descrittivo, sceglierà il metodo di inserimento corretto e aggiungerà anche dei tag per aiutarvi a identificare lo snippet.

Ecco come si presenta il codice:

/* Disable WordPress Admin Bar for all users */
add_filter( 'show_admin_bar', '__return_false' );

Se l’obiettivo è disabilitare la barra di amministrazione per tutti gli utenti, è sufficiente attivare/disattivare l’interruttore da “Inattivo” ad “Attivo” e cliccare su “Aggiorna”.

Adding custom code to WordPress

Tuttavia, poiché il nostro obiettivo è disabilitare la barra di amministrazione di WordPress per gli utenti non amministratori, dobbiamo apportare alcune piccole modifiche al codice.

È possibile sostituire il codice esistente con il seguente:

/* Disable WordPress Admin Bar for all users except administrators */
add_filter( 'show_admin_bar', 'restrict_admin_bar' );

function restrict_admin_bar( $show ) {
    return current_user_can( 'administrator' ) ? true : false;
}

Questo codice identifica gli utenti non amministratori che non stanno guardando la dashboard di amministrazione. Per questi utenti, disattiva la barra di amministrazione di WordPress.

Quindi, scorrere la pagina fino alla sezione ‘Inserimento’. Qui si può mantenere il metodo predefinito ‘Auto Insert’ per assicurarsi che il codice venga eseguito ovunque.

Automatically inserting code into a WordPress website

Infine, scorrere fino alla parte superiore dello schermo e fare clic sul cursore “Inattivo” in modo che sia visualizzato “Attivo”.

Quindi, basta fare clic sul pulsante “Salva snippet” o “Aggiorna” per rendere attivo lo snippet di codice.

Publishing a code snippet to disable the WordPress admin bar for non-admin users

È tutto! Ricordatevi di controllare il vostro sito WordPress per verificare che tutto funzioni bene.

Metodo 3: utilizzare un plugin gratuito per disabilitare la barra di amministrazione per gli utenti non amministratori

Se non si desidera aggiungere codice al sito web, è possibile nascondere la barra di amministrazione utilizzando un plugin. Hide Admin Bar Based on User Roles (Nascondi la barra di amministrazione in base ai ruoli dell’utente ) consente di rimuovere la barra in base ai diversi ruoli dell’utente, quindi è una buona scelta se si desidera disabilitare la barra per tutti i membri, i clienti di WooCommerce o altri ruoli dell’utente.

Innanzitutto, è necessario installare e attivare il plugin Hide Admin Bar Based on User Roles. Per maggiori dettagli, consultate la nostra guida passo-passo su come installare un plugin di WordPress.

Dopo l’attivazione, è necessario andare alla pagina Impostazioni ” Impostazioni della barra di amministrazione nascosta. Da qui, selezionare le caselle accanto ai ruoli utente per i quali si desidera disabilitare la barra di amministrazione.

Hiding the admin toolbar for specific user roles

A questo punto, è sufficiente fare clic su “Salva modifiche” per memorizzare le impostazioni.

Speriamo che questo articolo vi abbia aiutato a capire come disabilitare la barra di amministrazione di WordPress per tutti gli utenti tranne gli amministratori. Potreste anche consultare la nostra guida su come ricevere notifiche email per le modifiche ai post in WordPress e la nostra scelta dei migliori plugin per il monitoraggio e il registro delle attività di WordPress.

Se questo articolo vi è piaciuto, iscrivetevi al nostro canale YouTube per le esercitazioni video su WordPress. Potete trovarci anche su Twitter e Facebook.

Disclosure: Our content is reader-supported. This means if you click on some of our links, then we may earn a commission. See how WPBeginner is funded, why it matters, and how you can support us. Here's our editorial process.

The Ultimate WordPress Toolkit

Get FREE access to our toolkit - a collection of WordPress related products and resources that every professional should have!

Reader Interactions

163 commentiLeave a Reply

  1. I have a Question and Answer plugin on my blog which automatically adds admin bar for all users whenever i make an update on it. I am glad that WPCode has completely disabled this annoying feature. Thanks WPBeginner for the helpful article.

  2. This is very needed to hide the admin bar to all the user’s except the administrator.
    I have thought of doing this multiple times over specially when I was running news website and I had many authors and contributors.
    Showing them admin bar is not only unnecessary but annoying too.
    Really appreciate for the steps to get rid of this admin bar and keep it for only the administrator.

  3. Wow… This is great, you solved an issue I faced with on one of my WordPress website that BuddyPress was installed on….

  4. Using the after_setup_theme hook doesn’t always work. Try this instead:

    function remove_admin_bar( $value ) {
    return ( current_user_can( ‘administrator’ ) ) ? $value : false;
    }
    add_filter( ‘show_admin_bar’ , ‘remove_admin_bar’);

  5. What would be the code if I want to add Editor and Admin to show the Admin bar..

    if (!current_user_can(‘administrator’) && !is_admin())…

    if (!current_user_can(‘editor’) && !is_editor())…

    would it be if (!current_user_can(‘administrator’) && !is_admin() || !current_user_can(‘editor’) && !is_editor())

    would this work?

    • For what you are wanting, you would want to remove: && !is_editor()

      Then it should work how you are wanting.

      Admin

  6. Hi,
    I hide admin bar with plugin You recommend, but when subscriber log in he can still click on “view my profile” and see wp dashboard. Can I disable that?

    • If method 3 is not working for you, we would recommend trying one of the other methods to test.

      Admin

    • You may want to try clearing your cache for the most common reason for the change not being visible.

      Admin

  7. What exactly does this disable? I still see an admin bar and I have access to menu options when I go to example.com/wp-admin when i’m logged into a subscriber account.

    • You would want to ensure the code was properly added for the most likely cause of the admin bar not being hidden otherwise, you could also have a plugin that would be overriding this code.

      Admin

  8. Cannot add the admin code in my theme:

    Communication with the site not possible to check for errors, the PHP adjustment has been reversed. The PHP file change needs to be changed in another way, for example using SFTP.

  9. Hello there…!
    First of all i simply love the work wpbeginner, as you always bring forward the simplest solutions to our wordpress issues. Your website and Youtube channel has always been helpful for me. Thumbs Up for that.. :)

    I had issue with hiding the admin bar for the subscribers only. Now after applying your code in the function.php it is hidden for my editors also.
    Is there any way that my editors also can see the admin bar and only it should be hidden from the subscribers..!!

    • For that, you would need to target another permission that your editor has instead of what we are targeting such as edit_others_posts

      Admin

  10. On my website it says:

    “Unable to communicate back with site to check for fatal errors, so the PHP change was reverted. You will need to upload your PHP file change by some other means, such as by using SFTP.”

    What to do now?

  11. Can this code be altered to allow the WordPress Admin bar for Admins AND moderators, but hide it for everyone else?

    Thanks!

  12. If a user knows the URL structure of WordPress he can easily browser to /wp-admin/ and there the admin toolbar will be visible. Also, the easiest way is to deactivate it in the user setting if you have a small number of users.

  13. Doesn’t work. Well, to be fair, works when you first use it but then something happens and it doesn’t anymore. nothing is overwriting the functions.php and the code is there but usually after the first login, logout cycle a subsequent login will see the admin bar return.

  14. I have created a social media site using several plugins and everything works fine but for one issue. Pages are successfully restricted and redirected (Buddypress pages, blogs, etc) for non-logged in users.

    However the main issue I am having is that non-logged in users can still have access to blog posts and user profile pages via widgets placed on side bar and footer and I cannot seem to find a solution anywhere.

    Any ideas on the matter, plugins or code that I can insert in the child theme?

    I have been looking for a solution for over a day and all there is there is how to restrict pages and partial content but nothing works on the widget links, they keep going thru the restrictions in place.

    Thanks

    • Hey Cesar,

      There are several widgets and plugins that allow you to hide widgets from non-logged in users. However, if non-logged in users know the URL, then they would still be able to access those URLs directly. You need to review your plugin settings and see if you can find the option to hide profile pages from non-logged in users.

      Admin

  15. This code or several others that I tried from the comments isn’t working. I’m trying to remove that dumb silver/black wordpress tab above my menu that shows up for all of my website’s users. How do I remove that? Please help :)

    • As mentioned in the article, you included a way for users to edit their profiles through the front end without the admin bar. How did you accomplish that.
      Thanks

  16. Hello, some issue , i have done everything but can’t hide toolbar for owner user in frontend , but can do this for admin user , incredible.
    I’m using search& go theme wordpress , Thank for your help.

  17. Hello,

    Code needs a little updating. This is the code I would use to redirect by role.

    /*Hide admin bar for certain roles*/
    function hide_admin_bar() {
    if(is_user_logged_in() ) {
    $current_user = wp_get_current_user();
    if ( in_array( ‘subscriber’, (array) $current_user->roles ) ) {
    add_filter(‘show_admin_bar’, ‘__return_false’);
    }
    }
    }

    Hope this helps.

    • Thanks for this updated code, Alex. Simple and works great.

      Put it in child theme functions.php and forget about it. :)

    • Thanks, Alex but I’m editing a bit

      /*Hide admin bar for certain roles*/
      if(is_user_logged_in() ) {
      $current_user = wp_get_current_user();
      if ( in_array( ‘subscriber’, (array) $current_user->roles ) ) {
      add_filter(‘show_admin_bar’, ‘__return_false’);
      }
      }

    • Very nice :) but what do I do if I have two roles as a result of bbpress plugin.. That is registered users have the subscriber role in whole site and participant role in bbpress.
      Please help

  18. Hi,

    I inserted your code to remove the Admin bar from my membership site. Unfortunately it also removed it from me, the Admin (even thought I used your first option above). I am using the Tesseract Pro theme. Do you have any suggestions? Thanks

  19. Dear Sir,
    I have 2 admin user and i want to show admin bar for first user and remove admin bar for second user in wordpress.
    How can i do it.

    Thanks for support.

  20. I tried using this and I got that code Parse error: syntax error, unexpected ‘}’ in /home/content/76/10323476/html/wp-content/themes/digitalscience-apex/functions.php on line 168 and I can’t get my site back even after deleting it.

  21. Well, I wouldn’t use current_user_can for that… Codex says, that you can use it for role checking, but in the code you can find:

    * While checking against particular roles in place of a capability is supported
    * in part, this practice is discouraged as it may produce unreliable results.

    So… Much better and secure way to do this is:

    $user = wp_get_current_user();
    if ( ! in_array( ‘administrator’, (array) $user->roles ) ) {

    }

  22. i used it and it crashed my site, trying desperately to fix it now, i took the code back out and updated but I am getting an Error: Parse error: syntax error, unexpected ‘3’ (T_LNUMBER) in /home/lyndalspirit/public_html/wp-content/themes/primer/functions.php on line 516

    • Hi Lyndal,

      Some times when users copy code from websites like WPBeginner, they also copy the line numbers which they are not supposed to copy. When they paste this code in their functions.php file it causes an error.

      You need to connect to your site using an FTP client. Locate your functions.php go to the code you added and remove it. Save your changes.

      Admin

  23. This worked fine for me as-is, i stripped out the line numbers and stuck it at the end of my theme functions.php – instant success. thanks so much.

    • Login to your WordPress admin area using an Administrator account. Click on the Users menu item from the admin sidebar. This will show you a list of users registered on your WordPress site. Locate the user you wish to remove. Click on the Delete link below the username of the person you want to remove.

      Admin

    • JGUISS

      Didn’t worked for me…
      It’s worked with that : add_filter(‘show_admin_bar’, ‘__return_false’);

      how does the code look like with this added I’m not familiar enough with php to add it in

  24. Hello!

    Thank you so much for being such a great help! I installed this code on the function file but it does not seem to work. I loaded my page on a different browser but the Log In bar is still there. Why is that? I also read your article about adding codes to the PHP file.

    I hope you could help me out on this. Thanks!!

  25. Hi! First of all, thanks for these codes, it’s very helpful, provided I considered myself not a first timer anymore who remember to add after the codes!
    I locked myself at the first time trying to add the php coding in my functions.php file as well, thanks to the “expert” web developer who didn’t show the full set of codes for a function. And thanks to your “what to do when you are locked out of WordPress admin area” site, I found out why I was locked out in the first place! But it took me a downtime of 3 days to figure out how to use the FTP, which at the end failed to function, but my webhost Helpdesk suggested me to use the File Manager in their Control Panel instead! Luckily it works! Lessons learnt the hard way, but worth it.. :P
    Just a kind suggestion, since this site was supposed meant for “WPBeginner”, I think all of the WP users beginner would appreciate if full set of codes are provided, rather than every other person “shouting” in the comment section that “The codes didn’t work, and locked me out”, and then you have to advise them to read a full length of another tutorial how to unlock their website, even though yes, you wish to teach us “How to fish” instead of “Fish for us” every time!
    Anyway, thanks again and appreciate your efforts here in guiding us, the WP Beginners! :)

    • Thanks for the feedback. We try to make code easy to paste and use. However, usually there is already code in your functions.php file, which may affect the end result. We are glad you found your way out. :)

      Admin

Leave A Reply

Thanks for choosing to leave a comment. Please keep in mind that all comments are moderated according to our comment policy, and your email address will NOT be published. Please Do NOT use keywords in the name field. Let's have a personal and meaningful conversation.