login_form_<action>
Fires before a specified login form action.
Description
do_action( 'login_form_<action>' );
The dynamic portion(s) of the hook name refer to the action that brought the visitor to the login form. Actions include postpass,, 'logout', lostpassword, etc.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'login_form_{$action}' );
- The following example is for adding a hook callback.
- // define the login_form_<action> callback
- function action_login_form_action( ) {
- // make action magic happen here...
- };
- // add the action
- add_action( "login_form_{$action}", 'action_login_form_action', 10, 0 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( "login_form_{$action}", 'action_login_form_action', 10, 0 );
Defined (1)
The action is defined in the following location(s).
- /wp-login.php
- do_action( "login_form_{$action}" );