login_form_(action) action-hookWP 2.8.0

Fires before a specified login form action.

The dynamic portion of the hook name, $action, refers to the action that brought the visitor to the login form.

Possible hook names include:

Usage

add_action( 'login_form_(action)', 'wp_kama_login_form_action' );

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

	// action...
}

Changelog

Since 2.8.0 Introduced.

Where the hook is called

In file: /wp-login.php
login_form_(action)
wp-login.php 560
do_action( "login_form_{$action}" );

Where the hook is used in WordPress

Usage not found.