Change title for logo on WP login page
Change the default title for the logo on the WP login page to custom.
// NAV: Change title for logo on WP login page
add_filter( 'login_headertext', 'wpcoder_extra_title' );
function wpcoder_extra_title() {
return get_bloginfo( 'name' );
}