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

Como desativar a barra de administração do WordPress para todos os usuários, exceto os administradores

Alguns leitores nos perguntaram como desativar a barra de administração do WordPress. Embora seja um pequeno ajuste, alguns usuários preferem fazer isso por vários motivos, como manter uma interface de usuário mais limpa ou aprimorar a experiência do usuário para usuários não administradores.

Por padrão, você pode desativar facilmente a barra de administração do WordPress para usuários individuais. No entanto, isso pode ser demorado se houver um grande número de usuários registrados no seu site.

Neste artigo, mostraremos como desativar facilmente a barra de administração do WordPress para todos os usuários, exceto os administradores.

How to disable WordPress Admin Bar for All Users except administrators

O que é a barra de administração do WordPress?

Por padrão, o WordPress mostra uma barra de administração na parte superior da tela para todos os usuários conectados. Quando você estiver conectado à sua conta, poderá ver essa barra de ferramentas na área de administração do WordPress e em todas as outras páginas.

The WordPress admin bar

A barra de ferramentas de administração do WordPress tem atalhos úteis para diferentes áreas de back-end do WordPress, e esses atalhos mudam de acordo com a função e as permissões do usuário no WordPress.

No entanto, a barra de administração pode distrair quando você estiver olhando para o front-end do seu site.

Isso também pode afetar o design do seu site e a experiência do usuário. Isso pode ser um problema se você estiver criando ou gerenciando um site WordPress para terceiros, pois isso os impede de ver como o site deles realmente é.

Felizmente, há várias maneiras de desativar a barra de administração para todos os usuários, exceto os administradores. Basta usar os links rápidos abaixo para ir para o método que você deseja usar:

Tutorial em vídeo

Subscribe to WPBeginner

Se você preferir instruções escritas, continue lendo.

Método 1: Alterar as permissões de cada usuário no WordPress

Você pode desativar a barra de administração para usuários específicos simplesmente editando o perfil de usuário deles. Esse é um método rápido e fácil se você só precisa remover a barra para um pequeno número de pessoas. No entanto, se você administra um site de associação com muitos usuários, recomendamos que escolha um método diferente.

Para remover a barra de administração manualmente, basta acessar a página Usuários ” Todos os usuários no painel de administração do WordPress. Em seguida, passe o mouse sobre o usuário do WordPress que não precisa da barra de administração e clique em “Editar” quando ele aparecer.

How to edit a user's profile in WordPress

Isso abrirá o perfil do usuário.

A partir daí, desmarque a caixa ao lado da opção “Mostrar barra de ferramentas ao visualizar o site”.

How to hide the admin toolbar for non-admin users

Depois disso, role até a parte inferior da tela e clique em “Update User” (Atualizar usuário) para salvar as alterações. Isso desativará a barra de administração somente para essa pessoa específica.

Para ocultar a barra de ferramentas para mais usuários, basta seguir o mesmo processo descrito acima.

Método 2: usar código para desativar a barra de administração para usuários não administradores (recomendado)

Se você precisar ocultar a barra de administração para várias pessoas diferentes, alterar manualmente as configurações de cada usuário exigirá muito tempo e esforço.

Por esse motivo, recomendamos desativar a barra de administração adicionando um código ao arquivo functions.php, que é um arquivo de tema do WordPress.

Alguns guias informam que você deve editar os arquivos do tema manualmente, mas isso pode causar erros comuns do WordPress e até mesmo danificar completamente o site.

Por esse motivo, recomendamos o uso do WPCode. Ele é o melhor plugin de snippet de código e facilita a adição de código personalizado no WordPress sem colocar seu site em risco.

Usamos o WPCode para alterar o esquema de cores do administrador, remover o texto “Howdy Admin”, desativar o botão Screen Options e muito mais.

Primeiro, você precisará instalar e ativar o plug-in gratuito WPCode. Para obter mais informações, consulte nosso guia passo a passo sobre como instalar um plug-in do WordPress.

Depois que o plug-in for ativado, vá para Code Snippets ” Add Snippet.

Hiding the admin toolbar using WPCode

Aqui, você verá todos os snippets pré-criados que podem ser adicionados ao seu site.

Na verdade, o WPCode tem o trecho de código exato de que você precisa para desativar a barra de administração em sua biblioteca de snippets integrada. Basta acessar Code Snippets Library.

The WPCode code snippet plugin for WordPress

Aqui, procure por “Disable The WP Admin Bar” (Desativar a barra de administração do WP).

Quando o snippet correto for exibido, basta clicar no botão “Usar snippet”.

The ready-made Disable The WP Admin Bar code snippet

O plug-in adicionará automaticamente o código ao seu site, dará ao código um título descritivo, escolherá o método de inserção correto e até mesmo adicionará tags para ajudá-lo a identificar o snippet.

Veja a seguir a aparência do código:

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

Agora, se o seu objetivo é desativar a barra de administração para todos os usuários, tudo o que você precisa fazer é alternar o botão de “Inativo” para “Ativo” e, em seguida, clicar em “Atualizar”.

Adding custom code to WordPress

No entanto, como nosso objetivo é desativar a barra de administração do WordPress para usuários não administradores, precisamos fazer alguns pequenos ajustes no código.

Você pode substituir o código existente pelo seguinte:

/* 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;
}

Esse código identifica todos os usuários não administradores que não estão vendo o painel de administração no momento. Para esses usuários, ele desativa a barra de administração do WordPress.

Depois disso, role a página para baixo até a seção “Inserção”. Aqui, você pode manter o método padrão “Auto Insert” para garantir que o código seja executado em todos os lugares.

Automatically inserting code into a WordPress website

Por fim, role até a parte superior da tela e clique no controle deslizante “Inactive” (Inativo) para que ele mostre “Active” (Ativo).

Em seguida, basta clicar no botão “Salvar snippet” ou “Atualizar” para ativar o snippet de código.

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

É isso aí! Lembre-se de verificar seu site WordPress para ter certeza de que tudo está funcionando bem.

Método 3: use um plug-in gratuito para desativar a barra de administração para usuários não administradores

Se você não quiser adicionar código ao seu site, poderá ocultar a barra de administração usando um plug-in. O Hide Admin Bar Based on User Roles permite remover a barra de ferramentas com base em diferentes funções de usuário, portanto, é uma boa opção se você quiser desativar a barra para todos os membros, clientes do WooCommerce ou alguma outra função de usuário.

Primeiro, você precisa instalar e ativar o plug-in Hide Admin Bar Based on User Roles. Para obter mais detalhes, consulte nosso guia passo a passo sobre como instalar um plug-in do WordPress.

Após a ativação, você precisa ir para a página Settings ” Hide Admin Bar Settings. A partir daí, marque as caixas ao lado das funções de usuário em que deseja desativar a barra de administração.

Hiding the admin toolbar for specific user roles

Feito isso, basta clicar em “Save Changes” (Salvar alterações) para armazenar suas configurações.

Esperamos que este artigo tenha ajudado você a aprender como desativar a barra de administração do WordPress para todos os usuários, exceto os administradores. Você também pode querer ver nosso guia sobre como obter notificações por e-mail para alterações de publicações no WordPress e nossas escolhas de especialistas dos melhores plug-ins de registro e rastreamento de atividades do WordPress.

Se você gostou deste artigo, inscreva-se em nosso canal do YouTube para receber tutoriais em vídeo sobre o WordPress. Você também pode nos encontrar no Twitter e no Facebook.

Divulgação: Nosso conteúdo é apoiado pelo leitor. Isso significa que, se você clicar em alguns de nossos links, poderemos receber uma comissão. Veja como o WPBeginner é financiado, por que isso é importante e como você pode nos apoiar. Aqui está nosso processo editorial.

Avatar

Editorial Staff at WPBeginner is a team of WordPress experts led by Syed Balkhi with over 16 years of experience in WordPress, Web Hosting, eCommerce, SEO, and Marketing. Started in 2009, WPBeginner is now the largest free WordPress resource site in the industry and is often referred to as the Wikipedia for WordPress.

O kit de ferramentas definitivo WordPress

Obtenha acesso GRATUITO ao nosso kit de ferramentas - uma coleção de produtos e recursos relacionados ao WordPress que todo profissional deve ter!

Reader Interactions

161 ComentáriosDeixe uma resposta

  1. Hussam H

    Thank you and bless you.

    • WPBeginner Support

      You’re welcome!

      Administrador

  2. Paul

    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’);

  3. Matthew D Henderson

    Thank you for providing four different ways to do this. Perfect

    • WPBeginner Support

      Glad you found our recommendations helpful :)

      Administrador

  4. Joey

    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?

    • WPBeginner Support

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

      Then it should work how you are wanting.

      Administrador

  5. Basia

    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?

  6. Deewinc

    Thanks for the article but method 3 doesn’t work.

    • WPBeginner Support

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

      Administrador

  7. Dipesh Vedak

    what if theme upgrades?

    • WPBeginner Support

      If you created a site-specific plugin it would remain.

      Administrador

  8. Brandon Porter

    Worked like a charm. Thank you!

    • WPBeginner Support

      You’re welcome, glad our guide was helpful :)

      Administrador

  9. Bryan E Jackson

    Doesn’t seem to work for my Divi Theme :(

    • WPBeginner Support

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

      Administrador

  10. Paul

    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.

    • WPBeginner Support

      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.

      Administrador

  11. Jürgen

    Thanks. Just what I needed

    • WPBeginner Support

      Glad our guide was helpful :)

      Administrador

  12. khaoula

    Thanks a lot ,but what to do if the user wants to logout ?

  13. Kaetech

    Thanks a lot. Just what I needed. It worked.

    • WPBeginner Support

      You’re welcome, glad our guide was helpful :)

      Administrador

  14. Marc Korden

    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.

  15. Jailson Pacagnan Santana

    Thanks! God bless you

    • WPBeginner Support

      You’re welcome, glad our guide was helpful :)

      Administrador

  16. Ciao

    Where should i exactly insert the code, at the beginning, at the end of funcions.php? thx

    • WPBeginner Support

      We normally recommend at the end so it is easy to find and remove if needed

      Administrador

  17. Agha Mubasher

    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..!!

    • WPBeginner Support

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

      Administrador

    • WPBeginner Support

      You’re welcome :)

      Administrador

  18. Dana Jewel

    Thank you! This snippet has been really, really helpful.

    • WPBeginner Support

      You’re welcome, glad our guide could be helpful :)

      Administrador

  19. Faris

    Great Help, It worked like a charm!
    Thank You so much.

    • WPBeginner Support

      You’re welcome :)

      Administrador

  20. Jesaja

    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?

  21. TaiRon

    It does work like a chame, your code is perfect but I have to change in file manager directly.

    Thanks.

    • WPBeginner Support

      You’re welcome, glad our guide could help :)

      Administrador

  22. Bongani

    Thanks , very useful tutorial

    • WPBeginner Support

      You’re welcome :)

      Administrador

    • WPBeginner Support

      You’re welcome :)

      Administrador

  23. Jim

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

    Thanks!

  24. Andreas

    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.

  25. Adam Pressman

    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.

  26. prashanth

    It works but user cannot logout. How to logout?

  27. Cesar

    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

    • WPBeginner Support

      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.

      Administrador

  28. Shabz

    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 :)

  29. Humberto Buitrago

    Is there any plugin we can use instead code?

    Thanks in advanced!

    • Jack Hernandez

      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

  30. Paritosh Negi

    Thank you so much! <3 it works well

  31. Chouchouda

    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.

  32. Alex

    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.

    • Brandon

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

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

    • Yuki Zain

      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’);
      }
      }

    • randalf

      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

  33. Scott

    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

  34. Inder Singh

    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.

  35. SG

    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.

  36. Krzysiek Dróżdż

    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 ) ) {

    }

  37. Rajdeep dey

    This code not working on my website… Did any one have any other solutions for hiding admin bar.

  38. Lyndal Sirit

    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

    • WPBeginner Support

      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.

      Administrador

      • SG

        Even after deleting it, my site is coming back HELP!

  39. Chris

    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.

  40. Job

    The Code works like charm. Thanks.

  41. eli

    if(!current_user_can(‘administrator’)) {
    add_filter(‘show_admin_bar’, ‘__return_false’);
    }

  42. Gordon Cockburn

    How do I remove an individual ex member from access to members only area of website

    • WPBeginner Support

      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.

      Administrador

  43. Jguiss

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

    • JGUISS

      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

  44. The Little Binger

    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!!

  45. Vic

    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! :)

    • WPBeginner Support

      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. :)

      Administrador

  46. Louis

    It works just perfect!
    Easy and functional.
    Thank u!

  47. lucas

    Yo your code line has ruined both of my sites I cannot acces the wp-admin at all I get a fatal error message.. how can I fix this please :(

  48. Peters A P

    I did what was mentioned on the link you send me.

    Now the entire site is gone

    I cannot see anything, please check for yourself and see.

Deixe uma resposta

Obrigado por deixar um comentário. Lembre-se de que todos os comentários são moderados de acordo com nossos política de comentários, e seu endereço de e-mail NÃO será publicado. NÃO use palavras-chave no campo do nome. Vamos ter uma conversa pessoal e significativa.