1 comment

  1. It finally hit me that javascript would be behind the interim login modal behavior, and that gave me a new direction in my search. I have disabled the new login popups by adding the following to my theme’s functions.php file:

    // Disable login modals introduced in WordPress 3.6
    remove_action( 'admin_enqueue_scripts', 'wp_auth_check_load' );
    

    If anyone’s interested in learning more about the new login modals, they are setup in wp-includes/functions.php starting on line 3929. You should be able to derive the names and locations of supporting files from the information found there.

Comments are closed.