Hide / remove WordPress word from title bar
Add below in your child theme functions.php
add_filter('admin_title', custom_login_title, 99); add_filter('login_title', custom_login_title, 99); function custom_login_title($origtitle) { return get_bloginfo('name'); }