By default, you’ll see following title in browser tab of your WordPress admin panel – Dashboard ‹ Your Website — WordPress. You may wanna change WordPress admin panel title to customize your client’s WordPress website. It’s really easy to change the title with a small snippet.
Just add following snippet to your current theme’s functions.php file, which comes from StackExchange.com:
add_filter('admin_title', 'my_admin_title', 10, 2); function my_admin_title($admin_title, $title) { return get_bloginfo('name').' • '.$title; }
The above snippet will change default WordPress admin panel title to – Dashboard • Your Website