login_header action-hookWP 4.6.0

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()
login_header
wp-login.php 208
do_action( 'login_header' );

Where the hook is used in WordPress

Usage not found.