Used By
Used By | Description |
---|---|
wp-includes/cron.php: wp_reschedule_event() | Reschedules a recurring event. |
Filter to preflight or hijack rescheduling of events.
Returning a non-null value will short-circuit the normal rescheduling process, causing the function to return the filtered value instead.
For plugins replacing wp-cron, return true if the event was successfully rescheduled, false if not.
(null|bool) Value to return instead. Default null to continue adding the event.
(stdClass) An object containing an event's data.
(string) Action hook to execute when the event is run.
(int) Unix timestamp (UTC) for when to next run the event.
(string|false) How often the event should subsequently recur.
(array) Array containing each separate argument to pass to the hook's callback function.
(int) The interval time in seconds for the schedule. Only present for recurring events.
File: wp-includes/cron.php
Version | Description |
---|---|
5.1.0 | Introduced. |
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/hooks/pre_reschedule_event