Hide / Disable WordPress admin bar
The WordPress automatically generate a admin bar at the top of every pages for logged in users. This admin bar is really an annoyance to some of us in different situations.
Today we are going to hide this admin bar using some simple code snippets.
To hide admin bar completely from front end for all users, put the below code snippet in theme’s / child theme’s functions.php
file.
add_action('after_setup_theme', 'remove_admin_bar');
function remove_admin_bar() {
show_admin_bar( false );
}
We can hide admin bar for selected users only by adding an if statement with above lines of of code.
add_action('after_setup_theme', 'remove_admin_bar');
function remove_admin_bar() {
if (!current_user_can('administrator') && !is_admin()) {
show_admin_bar( false );
}
}
Now the admin bar is only visible for administrators.
Also we can use WordPress filter hook to hide this admin bar.
add_action('after_setup_theme', 'remove_admin_bar');
function remove_admin_bar() {
add_filter('show_admin_bar', '__return_false');
}
Got a project in mind? Send me a quick message, and I'll get back to you within 24 hours!.
Recent Posts
- Disabling Payment Methods in WooCommerce Based on Conditions
- How to Update Product Quantity in WooCommerce Using Custom Code
- Dynamically Generating a Table of Contents in WordPress
- Direct Checkout in WooCommerce - Add Product to Cart from Checkout Page & Skip Shop, Product, and Cart Pages
- Understanding the Impact of git reset --hard Command
Your Questions / Comments
If you found this article interesting, found errors, or just want to discuss about it, please get in touch.