login_form action-hookWP 2.1.0

Fires following the 'Password' field in the login form.

Usage

add_action( 'login_form', 'wp_kama_login_form_action' );

/**
 * Function for `login_form` action-hook.
 * 
 * @return void
 */
function wp_kama_login_form_action(){

	// action...
}

Changelog

Since 2.1.0 Introduced.

Where the hook is called

In file: /wp-login.php
login_form
wp-login.php 1519
do_action( 'login_form' );

Where the hook is used in WordPress

Usage not found.