Changeset 54267 for trunk/src/wp-includes/cron.php
- Timestamp:
- 09/20/2022 08:30:03 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/cron.php
r54210 r54267 378 378 379 379 /** 380 * Filter to preflight or hijack rescheduling of events.380 * Filter to preflight or hijack rescheduling of a recurring event. 381 381 * 382 382 * Returning a non-null value will short-circuit the normal rescheduling … … 393 393 * An object containing an event's data. 394 394 * 395 * @type string 396 * @type int 397 * @type string |false$schedule How often the event should subsequently recur.398 * @type array 399 * @type int $interval The interval time in seconds for the schedule. Only present for recurring events.395 * @type string $hook Action hook to execute when the event is run. 396 * @type int $timestamp Unix timestamp (UTC) for when to next run the event. 397 * @type string $schedule How often the event should subsequently recur. 398 * @type array $args Array containing each separate argument to pass to the hook's callback function. 399 * @type int $interval The interval time in seconds for the schedule. 400 400 * } 401 401 * @param bool $wp_error Whether to return a WP_Error on failure.
Note: See TracChangeset
for help on using the changeset viewer.