Consistently apply 'register' filter. props wonderboymusic for initial patch. fixes #14406.
git-svn-id: http://core.svn.wordpress.org/trunk@23558 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
511180da68
commit
ed830a979b
|
@ -451,7 +451,7 @@ case 'retrievepassword' :
|
|||
<p id="nav">
|
||||
<a href="<?php echo esc_url( wp_login_url() ); ?>"><?php _e('Log in') ?></a>
|
||||
<?php if ( get_option( 'users_can_register' ) ) : ?>
|
||||
| <a href="<?php echo esc_url( site_url( 'wp-login.php?action=register', 'login' ) ); ?>"><?php _e( 'Register' ); ?></a>
|
||||
| <?php echo apply_filters( 'register', sprintf( '<a href="%s">%s</a>', esc_url( site_url( 'wp-login.php?action=register', 'login' ) ), __( 'Register' ) ) ); ?>
|
||||
<?php endif; ?>
|
||||
</p>
|
||||
|
||||
|
@ -510,7 +510,7 @@ case 'rp' :
|
|||
<p id="nav">
|
||||
<a href="<?php echo esc_url( wp_login_url() ); ?>"><?php _e( 'Log in' ); ?></a>
|
||||
<?php if ( get_option( 'users_can_register' ) ) : ?>
|
||||
| <a href="<?php echo esc_url( site_url( 'wp-login.php?action=register', 'login' ) ); ?>"><?php _e( 'Register' ); ?></a>
|
||||
| <?php echo apply_filters( 'register', sprintf( '<a href="%s">%s</a>', esc_url( site_url( 'wp-login.php?action=register', 'login' ) ), __( 'Register' ) ) ); ?>
|
||||
<?php endif; ?>
|
||||
</p>
|
||||
|
||||
|
@ -703,7 +703,7 @@ default:
|
|||
<p id="nav">
|
||||
<?php if ( ! isset( $_GET['checkemail'] ) || ! in_array( $_GET['checkemail'], array( 'confirm', 'newpass' ) ) ) : ?>
|
||||
<?php if ( get_option( 'users_can_register' ) ) : ?>
|
||||
<a href="<?php echo esc_url( site_url( 'wp-login.php?action=register', 'login' ) ); ?>"><?php _e( 'Register' ); ?></a> |
|
||||
<?php echo apply_filters( 'register', sprintf( '<a href="%s">%s</a>', esc_url( site_url( 'wp-login.php?action=register', 'login' ) ), __( 'Register' ) ) ); ?> |
|
||||
<?php endif; ?>
|
||||
<a href="<?php echo esc_url( wp_lostpassword_url() ); ?>" title="<?php esc_attr_e( 'Password Lost and Found' ); ?>"><?php _e( 'Lost your password?' ); ?></a>
|
||||
<?php endif; ?>
|
||||
|
|
Loading…
Reference in New Issue