WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )apply_filters( "hook_name", "what_to_filter" ).Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
| Line | Code |
|---|---|
| 466 | <form name="loginform" id="loginform" action="<?php echo site_url('wp-login.php', 'login_post') ?>" method="post"> |
| 467 | <p> |
| 468 | <label><?php _e('Username') ?><br /> |
| 469 | <input type="text" name="log" id="user_login" class="input" value="<?php echo $user_login; ?>" size="20" tabindex="10" /></label> |
| 470 | </p> |
| 471 | <p> |
| 472 | <label><?php _e('Password') ?><br /> |
| 473 | <input type="password" name="pwd" id="user_pass" class="input" value="" size="20" tabindex="20" /></label> |
| 474 | </p> |
| 475 | <?php do_action('login_form'); ?> |
| 476 | <p class="forgetmenot"><label><input name="rememberme" type="checkbox" id="rememberme" value="forever" tabindex="90" /> <?php _e('Remember Me'); ?></label></p> |
| 477 | <p class="submit"> |
| 478 | <input type="submit" name="wp-submit" id="wp-submit" value="<?php _e('Log In'); ?>" tabindex="100" /> |
| 479 | <input type="hidden" name="redirect_to" value="<?php echo attribute_escape($redirect_to); ?>" /> |
| 480 | <input type="hidden" name="testcookie" value="1" /> |
| 481 | </p> |
| 482 | </form> |
| 483 | <?php endif; ?> |
| 484 | |