There is a better way than using global variable $pagenow to detect current page if is login page, like a is_admin() ?
if ($pagenow != 'wp-login.php' && !is_admin())
{
// Do something
}
There is a global variable $current_screen with a getter get_current_screen() (which declared in /wp-admin/includes/template.php), but it's always equal to NULL
On #15686 (Detect the current page template tag) – WordPress Trac it's sayed it's usually used $pagenow, but I think is not the good way to compare non-dynamic pages against there file name instead of there function (like admin page)
$pagenow. I found some people asking to implementis_login()conditional tag to customize login page: wordpress.org/extend/ideas/topic/custom-login-screen – mems Mar 11 '11 at 8:09