Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: lostpassword_form

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
400      $user_login = isset($_POST['user_login']) ? stripslashes($_POST['user_login']) : '';
401
402 ?>
403
404 <form name="lostpasswordform" id="lostpasswordform" action="<?php echo esc_url( site_url( 'wp-login.php?action=lostpassword', 'login_post' ) ); ?>" method="post">
405      <p>
406           <label for="user_login" ><?php _e('Username or E-mail:') ?><br />
407           <input type="text" name="user_login" id="user_login" class="input" value="<?php echo esc_attr($user_login); ?>" size="20" tabindex="10" /></label>
408      </p>
409 <?php do_action('lostpassword_form'); ?>
410      <input type="hidden" name="redirect_to" value="<?php echo esc_attr( $redirect_to ); ?>" />
411      <p class="submit"><input type="submit" name="wp-submit" id="wp-submit" class="button-primary" value="<?php esc_attr_e('Get New Password'); ?>" tabindex="100" /></p>
412 </form>
413
414 <p id="nav">
415 <a href="<?php echo esc_url( wp_login_url() ); ?>"><?php _e('Log in') ?></a>
416 <?php if ( get_option( 'users_can_register' ) ) : ?>
417  | <a href="<?php echo esc_url( site_url( 'wp-login.php?action=register', 'login' ) ); ?>"><?php _e( 'Register' ); ?></a>
418 <?php endif; ?>