admin_email_remind_interval WordPress Filter Hook
This hook is used to schedule when administrator email reminders should be sent out. It accepts two arguments: the interval (in seconds) between emails, and the number of emails to send.
apply_filters( 'admin_email_remind_interval', int $interval ) #
Filters the interval for dismissing the admin email confirmation screen.
Description
If 0
(zero) is returned, the "Remind me later" link will not be displayed.
Parameters
- $interval
(int)Interval time (in seconds). Default is 3 days.
Source
File: wp-login.php
Changelog
Version | Description |
---|---|
5.3.1 | Introduced. |