We may see wordpress admin email verification notice when login, it is:
How to disable it? In this tutorial, we will introduce you how to do.
Steps to disable wordpress admin email verification
It is easy to disable this notice, we can add php code below in our functions.php
// Disable WordPress Administration Email verification Screen add_filter( 'admin_email_check_interval', '__return_false' );
Save this file, we can find this notice is disabled.