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 |
---|---|
344 | <form name="loginform" id="loginform" action="wp-login.php" method="post"> |
345 | <p> |
346 | <label><?php _e('Username:') ?><br /> |
347 | <input type="text" name="log" id="user_login" class="input" value="<?php echo attribute_escape(stripslashes($user_login)); ?>" size="20" tabindex="10" /></label> |
348 | </p> |
349 | <p> |
350 | <label><?php _e('Password:') ?><br /> |
351 | <input type="password" name="pwd" id="user_pass" class="input" value="" size="20" tabindex="20" /></label> |
352 | </p> |
353 | <?php do_action('login_form'); ?> |
354 | <p><label><input name="rememberme" type="checkbox" id="rememberme" value="forever" tabindex="90" /> <?php _e('Remember me'); ?></label></p> |
355 | <p class="submit"> |
356 | <input type="submit" name="submit" id="submit" value="<?php _e('Login'); ?> »" tabindex="100" /> |
357 | <input type="hidden" name="redirect_to" value="<?php echo attribute_escape($redirect_to); ?>" /> |
358 | </p> |
359 | </form> |
360 | </div> |
361 |
|
362 | <ul> |