Changeset 49927 for trunk/src/wp-includes/cron.php
- Timestamp:
- 01/03/2021 10:02:13 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/cron.php
r49357 r49927 755 755 * @since 5.1.0 Return value added to indicate success or failure. 756 756 * 757 * @return bool|int On success an integer indicating number of events spawned (0 indicates no758 * events needed to be spawned), false if spawning fails for one or more events.757 * @return false|int On success an integer indicating number of events spawned (0 indicates no 758 * events needed to be spawned), false if spawning fails for one or more events. 759 759 */ 760 760 function wp_cron() { … … 881 881 * @since 5.1.0 882 882 * 883 * @param string| bool$schedule Schedule for the hook. False if not found.884 * @param string $hook Action hook to execute when cron is run.885 * @param array $args Optional. Arguments to pass to the hook's callback function.883 * @param string|false $schedule Schedule for the hook. False if not found. 884 * @param string $hook Action hook to execute when cron is run. 885 * @param array $args Optional. Arguments to pass to the hook's callback function. 886 886 */ 887 887 return apply_filters( 'get_schedule', $schedule, $hook, $args );
Note: See TracChangeset
for help on using the changeset viewer.