Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: login_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
634 <form name="loginform" id="loginform" action="<?php echo site_url('wp-login.php', 'login_post') ?>" method="post">
635      <p>
636           <label><?php _e('Username') ?><br />
637           <input type="text" name="log" id="user_login" class="input" value="<?php echo esc_attr($user_login); ?>" size="20" tabindex="10" /></label>
638      </p>
639      <p>
640           <label><?php _e('Password') ?><br />
641           <input type="password" name="pwd" id="user_pass" class="input" value="" size="20" tabindex="20" /></label>
642      </p>
643 <?php do_action('login_form'); ?>
644      <p class="forgetmenot"><label><input name="rememberme" type="checkbox" id="rememberme" value="forever" tabindex="90"<?php checked( $rememberme ); ?> /> <?php esc_attr_e('Remember Me'); ?></label></p>
645      <p class="submit">
646           <input type="submit" name="wp-submit" id="wp-submit" class="button-primary" value="<?php esc_attr_e('Log In'); ?>" tabindex="100" />
647 <?php     if ( $interim_login ) { ?>
648           <input type="hidden" name="interim-login" value="1" />
649 <?php     } else { ?>
650           <input type="hidden" name="redirect_to" value="<?php echo esc_attr($redirect_to); ?>" />
651 <?php      } ?>
652           <input type="hidden" name="testcookie" value="1" />