1 comment

  1. In WordPress 3.6 they added the “heartbeat” to the admin area and one of the features is this authentication check. You can disable this admin auth popup by adding the following to your functions.php file…

    // Remove admin login popup
    remove_action('admin_enqueue_scripts', 'wp_auth_check_load');
    

Comments are closed.