Login and Registration: Make the order of <title> tag parts on login page consistent with the rest of admin pages.

Props nishitlangaliya, henry.wright.
Fixes #40814.

git-svn-id: https://develop.svn.wordpress.org/trunk@41690 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2017-10-02 22:29:55 +00:00
parent 6bd89722fa
commit d12b5a5b98

View File

@ -66,7 +66,7 @@ function login_header( $title = 'Log In', $message = '', $wp_error = '' ) {
<!--<![endif]-->
<head>
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
<title><?php echo get_bloginfo( 'name', 'display' ) . $separator . $title; ?></title>
<title><?php echo $title . $separator . get_bloginfo( 'name', 'display' ); ?></title>
<?php
wp_enqueue_style( 'login' );