You log into WordPress and instead of the dashboard, you’re greeted with a full-screen popup: “Administration email verification. Please verify that the administration email for this website is still correct.”
You click “This email is correct” for the 15th time. It comes back in 6 months. Then again. And again.
This was added in WordPress 5.3 as a “helpful” reminder to verify your admin email. In practice, it’s an interruption that blocks dashboard access until you dismiss it — and it never stops coming back.
What is the admin email verification?
WordPress periodically prompts site administrators to confirm that the email address in Settings → General is still valid. The popup appears on the login screen, before you can access the dashboard, every 6 months.
The intention makes sense for large organizations where admin contacts change. For solo site owners who know exactly what their email is, it’s an annoyance with no off switch in the settings.
Why should you care?
It blocks dashboard access. The popup intercepts your login flow. You can’t skip it without clicking the confirmation button. For clients who don’t understand why their “site is asking for verification,” it generates unnecessary support tickets.
It reappears endlessly. There’s no “don’t ask me again” option. Every 6 months, without fail, it’s back. For agencies managing 30+ sites, that’s 60+ unnecessary popups per year.
It confuses non-technical users. Clients see “verify your email” and think something is wrong with their account. Some mistake it for a phishing attempt.
The quick fix
// Disable the admin email verification popup
add_filter( 'admin_email_check_interval', '__return_false' );
One line. The popup never appears again. Your admin email stays exactly as configured in Settings → General.
The one-click solution
OvKit includes Disable Admin Email Check under Features → Admin. One toggle, permanently dismissed.
What happens after you fix this?
- No more email verification popup ever again
- Direct dashboard access after every login
- Zero support tickets from confused clients
- Admin email still works normally — it’s just not nagging you about it
FAQ
### Will this prevent WordPress from sending me important emails?
No. WordPress emails (password resets, update notifications, comment alerts) all continue working normally. You’re only disabling the periodic verification popup, not the email functionality itself.
### What if my admin email actually changes?
You can always update it manually in Settings → General. Disabling the popup just stops the automatic “please verify” reminder. You remain in full control of your email settings.
### Does this work on multisite?
Yes. The filter works on both single-site and multisite installations. On multisite, each site admin will stop seeing the popup.
Related reads: