login_form
Fires following the 'Password' field in the login form.
Description
Parameters (1)
- 0. $array (callback) =>
array( &$this, 'preserve_action_in_login_form_for_json_api_authorization' )
- The array.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'login_form', $array );
- The following example is for adding a hook callback.
- // define the login_form callback
- function action_login_form( $array ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'login_form', 'action_login_form', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'login_form', 'action_login_form', 10, 1 );
Defined (3)
The action is defined in the following location(s).
- /class.jetpack.php
- add_action( 'login_form', array( &$this, 'preserve_action_in_login_form_for_json_api_authorization' ) );
- /modules/protect/math-fallback.php
- add_action( 'login_form', array( $this, 'math_form' ) );
- /modules/sso.php
- add_action( 'login_form', array( $this, 'login_form' ) );