login_head
The WordPress Core login head hook.
Description
Parameters (2)
- 0. $add_google_analytics (string) =>
'add_google_analytics'
- The add google analytics.
- 1. $int (int) =>
99
- The int.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'login_head', $add_google_analytics, $int );
- The following example is for adding a hook callback.
- // define the login_head callback
- function action_login_head( $add_google_analytics, $int ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'login_head', 'action_login_head', 10, 2 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'login_head', 'action_login_head', 10, 2 );
Defined (1)
The action is defined in the following location(s).
- /google-analyticator.php
- add_action('login_head', 'add_google_analytics', 99);