Title: Admin login verification
Last modified: November 19, 2019

---

# Admin login verification

 *  [Woongeluk](https://wordpress.org/support/users/b11n/)
 * (@b11n)
 * [6 years, 6 months ago](https://wordpress.org/support/topic/admin-login-verification/)
 * In 5.3 another annoying thing: verification of admin email. Could you enter an
   option to eradicate this nonsense? Admin email will not change, ever. We try 
   hard to downtune on superfluous and extra things to attend to and are tuning 
   down on accounts for everything. This one we think is not in our best interest.
    -  This topic was modified 6 years, 6 months ago by [Steven Stern (sterndata)](https://wordpress.org/support/users/sterndata/).

Viewing 2 replies - 1 through 2 (of 2 total)

 *  [Hugh Lashbrooke](https://wordpress.org/support/users/hlashbrooke/)
 * (@hlashbrooke)
 * [6 years, 6 months ago](https://wordpress.org/support/topic/admin-login-verification/#post-12149771)
 * You can use [the admin_email_check_interval filter](https://developer.wordpress.org/reference/hooks/admin_email_check_interval/)
   to change the amount of time between these checks. If you set it to 0 then the
   verification query will never be triggered.
 * To make this happen you can add the following code to your theme’s functions.
   php file or a custom plugin:
 *     ```
       add_filter( 'admin_email_check_interval', 'custom_remove_admin_email_verification');
       function custom_remove_admin_email_verification ( $int ) {
         return 0;
       }
       ```
   
 * I haven’t tested that, but it should work.
 * That being said, I would generally recommend against doing this as the admin 
   email verification is there as a security measure to make sure that you always
   receive important notifications and updates about your site.
 *  [Alex Mansfield](https://wordpress.org/support/users/alexmansfield/)
 * (@alexmansfield)
 * [6 years, 6 months ago](https://wordpress.org/support/topic/admin-login-verification/#post-12153623)
 * I just published a plugin to disable the email address verification prompt: [https://wordpress.org/plugins/disable-administration-email-verification-prompt/](https://wordpress.org/plugins/disable-administration-email-verification-prompt/)

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Admin login verification’ is closed to new replies.

## Tags

 * [admin login](https://wordpress.org/support/topic-tag/admin-login/)

 * In: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
 * 2 replies
 * 3 participants
 * Last reply from: [Alex Mansfield](https://wordpress.org/support/users/alexmansfield/)
 * Last activity: [6 years, 6 months ago](https://wordpress.org/support/topic/admin-login-verification/#post-12153623)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
