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 |
---|---|
351 | <?php if ( !in_array( $_GET['checkemail'], array('confirm', 'newpass') ) ) : ?> |
352 | <p> |
353 | <label><?php _e('Username:') ?><br /> |
354 | <input type="text" name="log" id="user_login" class="input" value="<?php echo attribute_escape(stripslashes($user_login)); ?>" size="20" tabindex="10" /></label> |
355 | </p> |
356 | <p> |
357 | <label><?php _e('Password:') ?><br /> |
358 | <input type="password" name="pwd" id="user_pass" class="input" value="" size="20" tabindex="20" /></label> |
359 | </p> |
360 | <?php do_action('login_form'); ?> |
361 | <p><label><input name="rememberme" type="checkbox" id="rememberme" value="forever" tabindex="90" /> <?php _e('Remember me'); ?></label></p> |
362 | <p class="submit"> |
363 | <input type="submit" name="wp-submit" id="wp-submit" value="<?php _e('Login'); ?> »" tabindex="100" /> |
364 | <input type="hidden" name="redirect_to" value="<?php echo attribute_escape($redirect_to); ?>" /> |
365 | </p> |
366 | <?php else : ?> |
367 | <p> </p> |
368 | <?php endif; ?> |
369 | </form> |