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 |
---|---|
448 | <?php if ( !isset($_GET['checkemail']) || !in_array( $_GET['checkemail'], array('confirm', 'newpass') ) ) : ?> |
449 | <p> |
450 | <label><?php _e('Username') ?><br /> |
451 | <input type="text" name="log" id="user_login" class="input" value="<?php echo attribute_escape(stripslashes($user_login)); ?>" size="20" tabindex="10" /></label> |
452 | </p> |
453 | <p> |
454 | <label><?php _e('Password') ?><br /> |
455 | <input type="password" name="pwd" id="user_pass" class="input" value="" size="20" tabindex="20" /></label> |
456 | </p> |
457 | <?php do_action('login_form'); ?> |
458 | <p class="forgetmenot"><label><input name="rememberme" type="checkbox" id="rememberme" value="forever" tabindex="90" /> <?php _e('Remember Me'); ?></label></p> |
459 | <p class="submit"> |
460 | <input type="submit" name="wp-submit" id="wp-submit" value="<?php _e('Log In'); ?>" tabindex="100" /> |
461 | <input type="hidden" name="redirect_to" value="<?php echo attribute_escape($redirect_to); ?>" /> |
462 | <input type="hidden" name="testcookie" value="1" /> |
463 | </p> |
464 | <?php else : ?> |
465 | <p> </p> |
466 | <?php endif; ?> |