login_header
Fires in the login page header after the body tag is opened.
Usage
add_action( 'login_header', 'wp_kama_login_header_action' ); /** * Function for `login_header` action-hook. * * @return void */ function wp_kama_login_header_action(){ // action... }
Changelog
Since 4.6.0 | Introduced. |
Where the hook is called
login_header
wp-login.php 212
do_action( 'login_header' );