How to change the wp-login.php page title?
It looks like it’s not easily accessible as it’s displayed as src: <title><?php echo get_bloginfo( ‘name’, ‘display’ ) . $separator . $title; ?></title> where the separator is: $separator = is_rtl() ? ‘ › ‘ : ‘ ‹ ‘; and the $title part comes from: login_header( $title=”Some title” , … ); But it looks like you’ve … Read more