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

Så här inaktiverar du WordPress Admin Bar för alla användare utom administratörer

Vill du inaktivera admin bar i WordPress för alla användare utom administratörer?

Som standard kan du enkelt inaktivera WordPress admin bar för enskilda användare. Detta kan dock ta tid om du har många registrerade användare på din site.

I den här artikeln visar vi dig hur du enkelt inaktiverar WordPress admin bar för alla användare utom administratörer.

How to disable WordPress Admin Bar for All Users except administrators

Vad är admin bar i WordPress?

Som standard visar WordPress en admin bar högst upp på vyn för alla inloggade användare. När du är inloggad på ditt account kan du se detta admin-verktygsfält i WordPress admin area och på alla andra pages.

The WordPress admin bar

WordPress admin-verktygsfält har användbara genvägar till olika back-end-områden i WordPress, och dessa genvägar ändras baserat på en användares roll och behörigheter i WordPress.

Admin bar kan dock vara distraherande när du tittar på front-enden av din website.

Det kan också påverka din websites design och användarnas upplevelse. Detta kan vara ett problem om du bygger eller hanterar en WordPress site för en tredje part, eftersom det hindrar dem från att se hur deras website verkligen gillar att se ut.

Lyckligtvis finns det flera sätt att inaktivera admin bar för alla användare utom administratörer. Använd bara snabblänkarna under för att hoppa till den metod du vill använda:

Video Tutorial

Subscribe to WPBeginner

Om du föredrar skriftliga instruktioner är det bara att fortsätta läsa.

Metod 1: Inaktivera WordPress Admin Bar för enskilda användare

Du kan inaktivera admin bar för specifika användare genom att helt enkelt editera deras användarprofil. Det här är en snabb och enkel metod om du bara behöver ta bort fältet för ett litet antal personer. Men om du runar en membership site med många användare rekommenderar vi att du väljer en annan metod.

Om du vill ta bort admin bar manuellt går du bara till sidan Användare ” Alla användare i WordPress adminpanel. Sedan hoverar du musen över den användare som inte behöver admin bar och klickar på ”Edit” när det visas.

How to edit a user's profile in WordPress

Detta kommer att öppna den användarens profil.

Avmarkera sedan boxen bredvid alternativet ”Show toolbar when viewing site” (Visa toolbar när du viewar webbplatser).

How to hide the admin toolbar for non-admin users

Efter det rullar du längst ner på vyn och klickar på ”Update User” för att save your changes. Detta inaktiverar admin bar endast för den specifika personen.

För att dölja toolbaren för fler användare följer du bara samma process som beskrivs ovan.

Metod 2: Inaktivera Admin Bar för alla användare utom administratörer (rekommenderas)

Om du behöver dölja admin bar för många olika personer, skulle det ta mycket tid och ansträngning att ändra varje användares inställningar manuellt.

Av den anledningen rekommenderar vi att du inaktiverar admin bar genom att lägga till kod i filen functions.php, som är en fil i WordPress theme. Om du inte har gjort detta tidigare kan du kontrollera vår guide om hur du copy and paste code snippets i WordPress.

Vissa guider säger att du ska editera theme-filerna manuellt, men detta kan orsaka vanliga WordPress-fel och kan till och med helt förstöra din website.

Av den anledningen rekommenderar vi att du använder WPCode. Det är det bästa code snippet plugin och gör det enkelt att add to custom kod i WordPress utan att sätta din site i riskzonen.

Först måste du installera och aktivera det gratis tillägget WPCode. För mer information, se vår steg-för-steg guide om hur du installerar ett plugin för WordPress.

När plugin är aktiverat, gå till Code Snippets ” Add Snippet.

Hiding the admin toolbar using WPCode

Here, you will see all the pre-made snippets you can add to your site. Detta inkluderar ett snippet som allow you att helt inaktivera comments, upload file types that WordPress doesn’t usually support, disable attachment pages, and much more.

På nästa skärm måste du hovera musen över alternativet ”Add Your Custom Code (New Snippet)” och klicka på knappen ”Use snippet” när den visas.

Adding custom code to your WordPress website with WPCode

På nästa vy skriver du in en titel för code snippet. Detta är bara för din referens, så du kan använda vad du vill.

Öppna sedan ”Code Type” dropdown och välj ”PHP Snippet”.

Adding a PHP snippet to WordPress using WPCode

När det är gjort klistrar du bara in följande kod i Editorn:

add_action('after_setup_theme', 'remove_admin_bar');
function remove_admin_bar() {
if (!current_user_can('administrator') && !is_admin()) {
  show_admin_bar(false);
}
}

Den här koden identifierar alla användare som inte är administratörer och som för närvarande inte tittar på adminpanelen. För dessa användare inaktiverar den WordPress admin bar.

Efter det rullar du ner på sidan till sektionen ”Insertion”. Här kan du behålla standardmetoden ’Auto Insert’ för att se till att koden körs överallt.

Automatically inserting code into a WordPress website

Slutligen rullar du till högst upp på vyn och clickar på slidern ”Inaktiverad” så att den visar ”Aktiv”.

Sedan klickar du bara på knappen ”Save Snippet” eller ”Update” för att göra code snippet live.

Publishing a custom code snippet to WordPress

Nu är det klart! Kom bara ihåg att kontrollera din WordPress website för att se till att allt fungerar som det ska.

Metod 3: Inaktivera WordPress Admin Bar för alla användare utom Admins (ingen kod obligatorisk)

Om du inte vill add to kod till din website, kan du dölja admin bar med hjälp av ett plugin. Hide Admin Bar Based on User Roles låter dig ta bort toolbaren baserat på olika användarroller, så det här är ett bra val om du vill inaktivera baren för alla medlemmar, WooCommerce customers eller någon annan användarroll.

Först måste du installera och aktivera pluginet Hide Admin Bar Based on User Roles. För mer detaljer, se vår Step-by-Step guide om hur du installerar ett WordPress plugin.

När du är aktiverad måste du gå till Settings ” Hide Admin Bar Settings page. Härifrån kontrollerar du boxarna bredvid de användarroller där du vill inaktivera admin bar.

Hiding the admin toolbar for specific user roles

När du har gjort det klickar du på ”Save Changes” för att lagra dina inställningar.

Metod 4: Inaktivera Admin Bar för alla användare (inklusive administratörer)

Vill du inaktivera admin bar för alla användare, inklusive site admins?

Du kan göra detta genom att lägga till kod som inaktiverar admin bar för alla som viewar din sites offentliga pages. Detta innebär att admin bar endast kommer att visas när du är i WordPress dashboard area.

För att göra det enkelt har WPCode det exakta code snippet du behöver i sitt built-in Snippet Library. Gå helt enkelt till Code Snippets Bibliotek.

The WPCode code snippet plugin for WordPress

Här söker du efter ”Inaktivera WP Admin Bar”.

När rätt snippet dyker upp klickar du bara på knappen ”Använd snippet”.

The ready-made Disable The WP Admin Bar code snippet

Pluginet lägger automatiskt till koden på din site, ger koden en beskrivande titel, väljer korrekt infogningsmetod och lägger till och med till tags för att hjälpa dig att identifiera snippet.

Så här gillar du koden:

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

Nu behöver du bara toggle omkopplaren från ’Inaktiverad’ till ’Aktiv’ och sedan clicka på ’Update’.

Adding custom code to WordPress

Om du nu besöker din websites front-end medan du är inloggad på ditt WordPress account, kommer admin bar att försvinna.

Vi hoppas att den här artikeln hjälpte dig att lära dig hur du inaktiverar WordPress admin bar för alla användare utom administratörer. Du kanske också vill se vår ultimata säkerhetsguide för WordPress och vår jämförelse av de bästa page builders för WordPress för att skapa anpassade layouts utan någon kod.

If you liked this article, then please subscribe to our YouTube Channel for WordPress video tutorials. You can also find us on Twitter and Facebook.

Avslöjande: Vårt innehåll stöds av våra läsare. Det innebär att om du klickar på några av våra länkar, kan vi tjäna en provision. Se hur WPBeginner finansieras, varför det är viktigt, och hur du kan stödja oss. Här är vår editoriala process.

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.

Den ultimata WordPress-verktygslådan

Få GRATIS tillgång till vår verktygslåda - en samling WordPress-relaterade produkter och resurser som varje professionell användare bör ha!

Reader Interactions

166 kommentarerLämna ett svar

  1. Syed Balkhi

    Hey WPBeginner readers,
    Did you know you can win exciting prizes by commenting on WPBeginner?
    Every month, our top blog commenters will win HUGE rewards, including premium WordPress plugin licenses and cash prizes.
    You can get more details about the contest from here.
    Start sharing your thoughts below to stand a chance to win!

  2. Hussam H

    Thank you and bless you.

    • WPBeginner Support

      You’re welcome!

      Administratör

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

  4. Matthew D Henderson

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

    • WPBeginner Support

      Glad you found our recommendations helpful :)

      Administratör

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

      Administratör

  6. 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?

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

      Administratör

  8. Dipesh Vedak

    what if theme upgrades?

    • WPBeginner Support

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

      Administratör

  9. Brandon Porter

    Worked like a charm. Thank you!

    • WPBeginner Support

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

      Administratör

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

      Administratör

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

      Administratör

  12. Jürgen

    Thanks. Just what I needed

    • WPBeginner Support

      Glad our guide was helpful :)

      Administratör

  13. khaoula

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

  14. Kaetech

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

    • WPBeginner Support

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

      Administratör

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

  16. Jailson Pacagnan Santana

    Thanks! God bless you

    • WPBeginner Support

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

      Administratör

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

      Administratör

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

      Administratör

  19. Felix

    Thank you very much.

    • WPBeginner Support

      You’re welcome :)

      Administratör

  20. Dana Jewel

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

    • WPBeginner Support

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

      Administratör

  21. Faris

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

    • WPBeginner Support

      You’re welcome :)

      Administratör

  22. 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?

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

      Administratör

  24. Bongani

    Thanks , very useful tutorial

    • WPBeginner Support

      You’re welcome :)

      Administratör

    • WPBeginner Support

      You’re welcome :)

      Administratör

  25. Jim

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

    Thanks!

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

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

  28. prashanth

    It works but user cannot logout. How to logout?

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

      Administratör

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

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

  32. Paritosh Negi

    Thank you so much! <3 it works well

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

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

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

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

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

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

    }

  39. Rajdeep dey

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

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

      Administratör

      • SG

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

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

    • WPBeginner Support

      Hey Chris,

      Glad you found it useful. Don’t forget to join us on Twitter for more WordPress tips and tutorials.

      Administratör

  42. Job

    The Code works like charm. Thanks.

  43. eli

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

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

      Administratör

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

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

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

      Administratör

  48. Louis

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

  49. 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 :(

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

Lämna ett svar

Tack för att du väljer att lämna en kommentar. Tänk på att alla kommentarer modereras enligt våra policy för kommentarer, och din e-postadress kommer INTE att publiceras. Vänligen använd INTE nyckelord i namnfältet. Låt oss ha en personlig och meningsfull konversation.