WordPress disable admin email verification helps stop the annoying site admin email check prompt that pops up every few months. Here’s how to disable it with one line — no plugin needed!
Add this to your child theme’s functions.php
file:
add_filter( ‘admin_email_check_interval’, ‘__return_false’ );
How It Works
This WordPress disable admin email verification tweak hooks into the admin_email_check_interval
filter. It tells WordPress to never show the verification screen.
Why WordPress Disable Admin Email Verification?
For single admin sites, the email rarely changes. Disabling the prompt removes an extra click and keeps the dashboard clean.
Common Mistake
If you do change your admin email later, make sure to double-check it’s correct in your settings, since WordPress won’t remind you anymore.
Pro Tip
Combine this with other admin tweaks to streamline your backend experience.