In the WordPress admin panel, there’s a WordPress icon right after the Home icon and website name. If you find it distracting or don’t want to see the WordPress icon there in the admin panel, then follow the steps below to remove the WordPress icon from the admin panel.
For later use, copy this code to place in the ‘functions.php’ file in the Theme Editor.
/*Remove WordPress Logo From Admin Bar*/
add_action( 'admin_bar_menu', 'remove_wp_logo', 999 );
function remove_wp_logo( $wp_admin_bar ) {
$wp_admin_bar->remove_node( 'wp-logo' );
}
Removing WordPress Logo From Admin Panel
Log into your website on WordPress
If you can’t find the login URL of your website follow our ‘how to find WordPress login URL guide.’
Navigate to Appearance >Theme Editor
Find the ‘Appearance’ option on the left side of the admin panel sidebar and navigate to Theme Editor. Skip the warning prompt if it appears for the first time.
Copy the code given below and paste it in functions.php file
From the above snippet, copy the code and paste at the bottom of ‘functions.php’ file.
Click ‘Update File’ and reload the page
To save the settings, click update file button at the bottom of the page and reload.
The WordPress logo will be removed after that
Reload the page and the WordPress icon/logo will be removed from the admin dashboard.
Advantages of Removing WordPress Logo:
If you’re an owner of the website or a developer, removing the WordPress logo from the admin dashboard is useful in many ways.
- Prevent users/clients from knowing which platform you are using
- Make your site more professional
- Remove unnecessary functions
- A simple and clean UI of website
- Increase your credibility as a web designer