mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-03 12:12:25 +08:00
https://make.wordpress.org/core/2019/10/17/wordpress-5-3-admin-email-verification-screen/
4 lines
166 B
Text
4 lines
166 B
Text
function wp_admin_email_check_interval( $interval ) {
|
|
return 9 * MONTH_IN_SECONDS;
|
|
}
|
|
add_filter( 'admin_email_check_interval', 'wp_admin_email_check_interval' );
|