apply_filters( 'get_schedule', string|false $schedule, string $hook, array $args )

Filters the schedule name 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.

Top ↑

Source

File: wp-includes/cron.php. View all references

return apply_filters( 'get_schedule', $schedule, $hook, $args );


Top ↑

Changelog

Changelog
Version Description
5.1.0 Introduced.

Top ↑

User Contributed Notes

You must log in before being able to contribute a note or feedback.