Hello,
Add the below code in the functions.php file of the active theme.
if (isset($_REQUEST[‘page’]) && $_REQUEST[‘page’] === “dashboard”) {
// Enqueue Admin-side assets…
add_filter(‘admin_title’, function ($admin_title, $title)
{
return get_bloginfo(‘name’);
}, 10, 2);
}
Thank You.
Hello, Thanks for your response
I added the code and still the Tab name not changed
Edit: I solve the issue when using this code…
Add the below code in the functions.php file of the active theme.
function my_admin_title ( $admin_title, $title ) {
return $title . ' — ' . 'SubTitle HERE';
}
add_filter( 'admin_title', 'my_admin_title', 10, 2 );
Thanks
-
This reply was modified 4 years ago by
adammimi.
-
This reply was modified 4 years ago by
adammimi.
-
This reply was modified 4 years ago by
adammimi.
-
This reply was modified 4 years ago by
adammimi.