Remove WordPress Text
-
@gurudeb In the next version, could you please add the option to remove the – WordPress text from the Admin Login page title?
/** * Changes the wp-login.php page title and removes the default "WordPress" text */ add_filter( 'login_title', function($login_title) { return str_replace(array( ' ‹', ' — WordPress',__('WordPress'),), array( ' ‹', ''), $login_title ); }); add_filter( 'admin_title', function($admin_title) { return str_replace(array( ' ‹', ' — WordPress',__('WordPress'),), array( ' ‹', ''), $admin_title ); });
This would help us a bit in white-labeling the Admin area.
Thanks!
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Remove WordPress Text’ is closed to new replies.