Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: get_schedule

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
1096      /**
1097       * Filters the schedule for a hook.
1098       *
1099       * @since 5.1.0
1100       *
1101       * @param string|false $schedule Schedule for the hook. False if not found.
1102       * @param string       $hook     Action hook to execute when cron is run.
1103       * @param array        $args     Arguments to pass to the hook's callback function.
1104       */
1105      return apply_filters( 'get_schedule', $schedule, $hook, $args );
1106 }
1107
1108 /**
1109  * Retrieve cron jobs ready to be run.
1110  *
1111  * Returns the results of _get_cron_array() limited to events ready to be run,
1112  * ie, with a timestamp in the past.
1113  *
1114  * @since 5.1.0