If you keep logging into WordPress and keep seeing the “Admin Email Verification” screen you know it can get quite annoying. This message was added in WordPress 5.3 for security reasons but can be a nuisance.
By default, this screen will pop up every 6 months when logging into WordPress. It’s a great security feature but can be annoying if you manage a lot of WordPress sites.
Here is a bit of code that will completely disable the Administration email verification screen.
You can add this to your theme’s functions.php or with a plugin like Code Snippets.
<?php | |
//Disable the WordPress site admin email verification screen | |
add_filter( 'admin_email_check_interval', '__return_false' ); |
Once this snippet is added it will fully disable the “Administration email verification” screen when logging into WordPress.
Now that you’ve disabled the admin email verification message at login, I hope your WordPress productivity is improved. If you have any questions let me know in the comments below.
4 Responses
And if you are adding the snippet to an existing functions.php, just ensure that you don’t add php opening tag at the beginning of the snippet as the second opening tag, which may result in failure loading your website! Thanks for this great tip Andy!
Hi.for this great tip Andy.
You’re welcome!
Great, I’ve been wanting to hide this more dangerous message for a while. Thank you so much.