Changeset 41843
- Timestamp:
- 10/12/2017 04:56:05 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-login.php
r41782 r41843 136 136 $login_header_title = apply_filters( 'login_headertitle', $login_header_title ); 137 137 138 /* 139 * To match the URL/title set above, Multisite sites have the blog name, 140 * while single sites get the header title. 141 */ 142 if ( is_multisite() ) { 143 $login_header_text = bloginfo( 'name' ); 144 } else { 145 $login_header_text = $login_header_title; 146 } 147 138 148 $classes = array( 'login-action-' . $action, 'wp-core-ui' ); 139 149 if ( is_rtl() ) … … 172 182 ?> 173 183 <div id="login"> 174 <h1><a href="<?php echo esc_url( $login_header_url ); ?>" title="<?php echo esc_attr( $login_header_title ); ?>" tabindex="-1"><?php bloginfo( 'name' ); ?></a></h1>184 <h1><a href="<?php echo esc_url( $login_header_url ); ?>" title="<?php echo esc_attr( $login_header_title ); ?>" tabindex="-1"><?php echo $login_header_text; ?></a></h1> 175 185 <?php 176 186
Note: See TracChangeset
for help on using the changeset viewer.