一部の読者から、WordPressの管理バーを無効化する方法を尋ねられました。これは小さな調整ですが、ユーザーによっては、よりすっきりとしたユーザーインターフェースを維持したい、管理者以外のユーザーのユーザー体験を向上させたいなど、さまざまな理由でこれを行うことを好みます。
初期設定では、個々のユーザーのWordPress管理バーを簡単に無効化することができます。しかし、サイトに多数の登録ユーザーがいる場合、これは時間のかかる作業です。
この投稿では、WordPressの管理バーを管理者以外のすべてのユーザーに対して簡単に無効化する方法を紹介します。
WordPressの管理バーとは?
初期設定では、WordPressはログイン中のすべてのユーザーの画面上部に管理バーを表示します。アカウントにログインすると、WordPressの管理エリアやその他のすべてのページでこのツールバーが表示されます。
WordPressの管理ツールバーには、WordPressのさまざまなバックエンドエリアへの便利なショートカットがあり、これらのショートカットは、ユーザーのWordPressにおける権限とグループによって変わります。
しかし、サイトのフロントエンドを見ていると、管理バーが邪魔になることがある。
また、サイトのデザインやユーザーエクスペリエンスにも影響を与える可能性があります。これは、第三者のためにWordPressサイトを構築または管理している場合に問題となる可能性があります。
幸いなことに、管理者以外のすべてのユーザーに対して管理バーを無効化する方法は複数あります。以下のクイックリンクから、使いたい方法にジャンプしてください:
動画チュートリアル
文章での説明がお好きな方は、そのまま読み進めてください。
方法1:WordPressで各ユーザーの権限を変更する
ユーザープロフィールを編集するだけで、特定のユーザーの管理バーを無効化することができます。これは、少数のユーザーに対して管理バーを削除する必要がある場合、迅速で簡単な方法です。しかし、多くのユーザーを抱える会員制サイトを運営している場合は、別の方法を選択することをお勧めします。
管理バーを手動で削除するには、WordPress管理ダッシュボードのユーザー ” すべてのユーザーページに移動するだけです。そして、管理バーが不要なWordPressユーザーにマウスオーバーし、表示されたら「編集」をクリックします。
そのユーザーのプロフィールが表示されます。
ここから、「サイト表示時にツールバーを表示する」オプションの隣のチェックボックスを外す。
その後、画面を一番下までスクロールし、「ユーザーを更新」をクリックして変更を保存します。これで、その特定のユーザーのみ管理バーが無効化されます。
より多くのユーザーのツールバーを非表示にするには、上記と同じ手順を踏むだけです。
方法2:コードを使用して非管理ユーザーの管理バーを無効化する(推奨)
管理バーを多くのユーザーに対して非表示にする必要がある場合、各ユーザーの設定を手動で変更するのは大変な時間と労力がかかります。
そのため、WordPressのテーマファイルであるfunctions.phpファイルにコードを追加して管理バーを無効化することをお勧めします。
テーマファイルを手動で編集するように指示するガイドもありますが、WordPressの一般的なエラーを引き起こし、サイトを完全に壊してしまう可能性もあります。
そのため、WPCodeの使用をお勧めします。これは最高のコードスニペットプラグインで、サイトを危険にさらすことなくWordPressにカスタムコードを簡単に追加することができます。
WPCodeを使って、管理画面の配色を変更したり、「Howdy Admin」テキストを削除したり、表示オプションボタンを無効化したりしました。
まず、無料のWPCodeプラグインをインストールし、有効化する必要があります。 詳しくは、WordPressプラグインのインストール方法のステップバイステップガイドをご覧ください。
プラグインを有効化したら、Code Snippets ” Add Snippetに進みます。
ここでは、あなたのサイトに追加できるすべての既製のスニペットが表示されます。
実際、WPCodeには、管理バーを無効化するのに必要なコード・スニペットが、ビルトインのスニペット・ライブラリに用意されています。コードスニペット“ライブラリにアクセスしてください。
ここで、「Disable The WP Admin Bar」を検索する。
適切なスニペットが表示されたら、その「スニペットを使う」ボタンをクリックするだけだ。
プラグインは自動的にサイトにコードを追加し、コードに説明的なタイトルを付け、正しい挿入方法を選択し、さらにスニペットを識別するためのタグを追加します。
コードはこんな感じだ:
/* Disable WordPress Admin Bar for all users */
add_filter( 'show_admin_bar', '__return_false' );
すべてのユーザーに対して管理バーを無効化することが目的であれば、スイッチを「無効化」から「有効化」に切り替え、「更新」をクリックするだけです。
しかし、我々の目的は非管理ユーザーに対してWordPressの管理バーを無効化することなので、コードを少し調整する必要がある。
既存のコードを以下のように置き換えることができる:
/* 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;
}
このコードは、現在管理ダッシュボードを見ていない非管理ユーザーを識別します。これらのユーザーに対しては、WordPress 管理バーを無効化します。
その後、ページを下にスクロールして「インサーター」セクションまで進む。ここでは、初期設定の’Auto Insert’メソッドのままにしておくと、どこでもコードが実行されるようになります。
最後に画面を一番上までスクロールし、「Inactive」スライダーをクリックして「Active」と表示させる。
その後、「スニペットを保存」または「更新」ボタンをクリックするだけで、コード・スニペットが有効になります。
以上で作業は終了です!WordPressサイトが正常に動作していることを確認するのを忘れないでください。
方法3:無料のプラグインを使って、非管理ユーザー用の管理バーを無効化する。
サイトにコードを追加したくない場合は、プラグインを使って管理バーを非表示にすることができます。Hide Admin Bar Based on User Rolesは異なるユーザー権限に基づいてツールバーを非表示にすることができるので、すべてのメンバーやWooCommerceの顧客、その他のユーザー権限で管理バーを無効化したい場合におすすめです。
まず、Hide Admin Bar Based on User Rolesプラグインをインストールして有効化する必要があります。詳しくは、WordPressプラグインのインストール方法のステップバイステップガイドをご覧ください。
有効化した後、Settings ” Hide Admin Bar Settingsページに移動する必要があります。ここで、管理バーを無効化したいユーザー権限グループの横にあるボックスにチェックを入れます。
あとは「変更を保存」をクリックするだけで、設定が保存されます。
WordPressの管理バーを管理者以外のすべてのユーザーに対して無効化する方法について、この投稿がお役に立てれば幸いです。また、WordPress で投稿の変更をメールで通知する方法や、WordPress の活動ログとトラッキングプラグインのエキスパートによるベストセレクションもご覧ください。
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.
Hussam H
Thank you and bless you.
WPBeginner Support
You’re welcome!
管理者
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’);
Matthew D Henderson
Thank you for providing four different ways to do this. Perfect
WPBeginner Support
Glad you found our recommendations helpful
管理者
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.
管理者
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?
WPBeginner Support
You can redirect users after login using the method from our guide below:
https://www.wpbeginner.com/plugins/how-to-redirect-users-after-successful-login-in-wordpress/
管理者
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.
管理者
Dipesh Vedak
what if theme upgrades?
WPBeginner Support
If you created a site-specific plugin it would remain.
管理者
Brandon Porter
Worked like a charm. Thank you!
WPBeginner Support
You’re welcome, glad our guide was helpful
管理者
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.
管理者
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.
管理者
Jürgen
Thanks. Just what I needed
WPBeginner Support
Glad our guide was helpful
管理者
khaoula
Thanks a lot ,but what to do if the user wants to logout ?
WPBeginner Support
You can add a logout link to your menu for one option, we have a guide on how to do that below.
https://www.wpbeginner.com/wp-tutorials/how-to-add-the-wordpress-logout-link-to-navigation-menu/
管理者
Kaetech
Thanks a lot. Just what I needed. It worked.
WPBeginner Support
You’re welcome, glad our guide was helpful
管理者
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.
WPBeginner Support
That message means that WordPress was not able to check the code for errors and you would need to use an FTP tool to add the code. We have a guide you can follow below:
https://www.wpbeginner.com/beginners-guide/how-to-use-ftp-to-upload-files-to-wordpress-for-beginners/
管理者
Jailson Pacagnan Santana
Thanks! God bless you
WPBeginner Support
You’re welcome, glad our guide was helpful
管理者
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
管理者
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
管理者
Felix
Thank you very much.
WPBeginner Support
You’re welcome
管理者
Dana Jewel
Thank you! This snippet has been really, really helpful.
WPBeginner Support
You’re welcome, glad our guide could be helpful
管理者
Faris
Great Help, It worked like a charm!
Thank You so much.
WPBeginner Support
You’re welcome
管理者
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?
WPBeginner Support
It means the new WordPress safety features prevented you from editing the file, you would need to download and edit your theme’s files using FTP: https://www.wpbeginner.com/beginners-guide/how-to-use-ftp-to-upload-files-to-wordpress-for-beginners/
管理者
Jesaja
Oh.. can’t I just put it in the Custom CSS area?
WPBeginner Support
No, this is PHP not CSS so it wouldn’t go into there.
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
管理者
Bongani
Thanks , very useful tutorial
WPBeginner Support
You’re welcome
管理者
Mike
Thank you!
WPBeginner Support
You’re welcome
管理者
Jim
Can this code be altered to allow the WordPress Admin bar for Admins AND moderators, but hide it for everyone else?
Thanks!
WPBeginner Support
You would need to add another && !current_user_can(”) inside the parentheses with the name of the role you are wanting it to appear on or use the plugin adminimize from our article: https://www.wpbeginner.com/wp-tutorials/what-everybody-ought-to-know-about-the-wordpress-admin-bar/
管理者
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.
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.
prashanth
It works but user cannot logout. How to logout?
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.
管理者
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
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
Paritosh Negi
Thank you so much! <3 it works well
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.
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
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
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.
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.
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 ) ) {
…
}
Rajdeep dey
This code not working on my website… Did any one have any other solutions for hiding admin bar.
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.
管理者
SG
Even after deleting it, my site is coming back HELP!
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.
管理者
Job
The Code works like charm. Thanks.
eli
if(!current_user_can(‘administrator’)) {
add_filter(‘show_admin_bar’, ‘__return_false’);
}
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.
管理者
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
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!!
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..
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.
管理者
Louis
It works just perfect!
Easy and functional.
Thank u!
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
WPBeginner Support
You need to remove the code you added. See our guide on what to do when locked out of WordPress admin area.
管理者
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.
WPBeginner Support
Please see our guide what to do when you are locked out of WordPress admin area
管理者
lucas
Hi, did you manage to fix the problem? I had the exact same issue