Filters the schedule name for a hook.
$schedulestring|false$hookstring$argsarraywp-includes/cron.php:1149wp_get_schedule()<?php * @since 5.1.0 * * @param string|false $schedule Schedule for the hook. False if not found. * @param string $hook Action hook to execute when cron is run. * @param array $args Arguments to pass to the hook's callback function. */ return apply_filters( 'get_schedule', $schedule, $hook, $args );} /** * Retrieves cron jobs ready to be run. * * Returns the results of _get_cron_array() limited to events ready to be run,Introduced in 5.1.0. Unchanged from 6.7.7 through 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.