Changeset 54206
- Timestamp:
- 09/19/2022 05:07:52 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-login.php
r53827 r54206 1104 1104 <p id="nav"> 1105 1105 <a href="<?php echo esc_url( wp_login_url() ); ?>"><?php _e( 'Log in' ); ?></a> 1106 <?php echo esc_html( $login_link_separator ); ?> 1107 <a href="<?php echo esc_url( wp_lostpassword_url() ); ?>"><?php _e( 'Lost your password?' ); ?></a> 1106 <?php 1107 1108 echo esc_html( $login_link_separator ); 1109 1110 $html_link = sprintf( '<a href="%s">%s</a>', esc_url( wp_lostpassword_url() ), __( 'Lost your password?' ) ); 1111 1112 /** This filter is documented in wp-login.php */ 1113 echo apply_filters( 'lost_password_html_link', $html_link ); 1114 1115 ?> 1108 1116 </p> 1109 1117 <?php … … 1472 1480 } 1473 1481 1482 $html_link = sprintf( '<a href="%s">%s</a>', esc_url( wp_lostpassword_url() ), __( 'Lost your password?' ) ); 1483 1484 /** 1485 * Filters the link that allows the user to retrieve the lost password. 1486 * 1487 * @since 6.1.0 1488 * 1489 * @param string $html_link HTML link to the lost password form. 1490 */ 1491 echo apply_filters( 'lost_password_html_link', $html_link ); 1492 1474 1493 ?> 1475 <a href="<?php echo esc_url( wp_lostpassword_url() ); ?>"><?php _e( 'Lost your password?' ); ?></a>1476 1494 </p> 1477 1495 <?php
Note: See TracChangeset
for help on using the changeset viewer.