wp login page

Solutions on MaxInterview for wp login page by the best coders in the world

showing results for - "wp login page"
Lennart
11 May 2020
1if ( $GLOBALS['pagenow'] === 'wp-login.php' && ! empty( $_REQUEST['action'] ) && $_REQUEST['action'] === 'register' ) {
2    // We're registering
3}
4
Nicola
26 Oct 2016
1if ( $GLOBALS['pagenow'] === 'wp-login.php' ) {
2    // We're on the login page!
3}
4