Adminbar Tweaking
-
I need help removing or modifying the Title/Site Text on the left side of the Adminbar just right of the WP Logo. I have a Logo in place in the Adminbar and have no need for identifying the site twice.
EX. https://cdn.wpbeginner.com/wp-content/uploads/2012/05/adminthumbnew-180×180.png
I tried this in the fuctions.php
function replace_sitename( $wp_admin_bar ) { $wp_admin_bar_site_name=$wp_admin_bar->get_node('wp-admin-bar-site-name'); $newtitle = str_replace( 'Sitename,', 'Menu,', $wp_admin_bar_site_name->title ); $wp_admin_bar->add_node( array( 'id' => 'wp-admin-bar-site-name', 'title' => $newtitle, ) ); } add_filter( 'admin_bar_menu', 'replace_sitename',25 );
All it did was move the text I’m trying to modify to the right one space O_o
Way it looks:
https://www.2ndruntv.com/images/Adminbar1.PNGWhat I would like it to look:
https://www.2ndruntv.com/images/Adminbar2.PNG
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Adminbar Tweaking’ is closed to new replies.