get_schedule WordPress Filter Hook
The get_schedule Wordpress hook is used to retrieve the schedule for a particular event. This can be used to display the schedule on a website or to export it to a file.
apply_filters( 'get_schedule', string|false $schedule , string $hook , array $args ) #
Filters the schedule for a hook.
Parameters
- $schedule
(string|false)Schedule for the hook. False if not found.
- $hook
(string)Action hook to execute when cron is run.
- $args
(array)Arguments to pass to the hook's callback function.
Source
File: wp-includes/cron.php
Changelog
Version | Description |
---|---|
5.1.0 | Introduced. |