wp_schedule_event
函数
wp_schedule_event ( $timestamp, $recurrence, $hook, $args = array(), $wp_error = false )
- 参数
-
-
(int)
$timestamp
Unix timestamp (UTC) for when to next run the event.- Required: 是
-
(string)
$recurrence
How often the event should subsequently recur. See wp_get_schedules() for accepted values.- Required: 是
-
(string)
$hook
Action hook to execute when the event is run.- Required: 是
-
(array)
$args
Optional. Array containing arguments to pass to the hook’s callback function. Each value in the array is passed to the callback as an individual parameter. The array keys are ignored. Default empty array.- Required: 否
- Default: array()
-
(bool)
$wp_error
Optional. Whether to return a WP_Error on failure. Default false.- Required: 否
- Default: false
-
(int)
- 返回值
-
- (bool|WP_Error) True if event successfully scheduled. False or WP_Error on failure.
- 定义位置
-
-
wp-includes/cron.php
, line 232
-
wp-includes/cron.php
- 引入
- 2.1.0
- 弃用
- –
Schedules a recurring event.
Schedules a hook which will be triggered by WordPress at the specified interval.
The action will trigger when someone visits your WordPress site if the scheduled
time has passed.
Valid values for the recurrence are ‘hourly’, ‘daily’, and ‘twicedaily’. These can
be extended using the {@see ‘cron_schedules’} filter in wp_get_schedules().
Use wp_next_scheduled() to prevent duplicate events.
Use wp_schedule_single_event() to schedule a non-recurring event.
function wp_schedule_event( $timestamp, $recurrence, $hook, $args = array(), $wp_error = false ) { // Make sure timestamp is a positive integer. if ( ! is_numeric( $timestamp ) || $timestamp $hook, 'timestamp' => $timestamp, 'schedule' => $recurrence, 'args' => $args, 'interval' => $schedules[ $recurrence ]['interval'], ); /** This filter is documented in wp-includes/cron.php */ $pre = apply_filters( 'pre_schedule_event', null, $event, $wp_error ); if ( null !== $pre ) { if ( $wp_error && false === $pre ) { return new WP_Error( 'pre_schedule_event_false', __( 'A plugin prevented the event from being scheduled.' ) ); } if ( ! $wp_error && is_wp_error( $pre ) ) { return false; } return $pre; } /** This filter is documented in wp-includes/cron.php */ $event = apply_filters( 'schedule_event', $event ); // A plugin disallowed this event. if ( ! $event ) { if ( $wp_error ) { return new WP_Error( 'schedule_event_false', __( 'A plugin disallowed this event.' ) ); } return false; } $key = md5( serialize( $event->args ) ); $crons = _get_cron_array(); $crons[ $event->timestamp ][ $event->hook ][ $key ] = array( 'schedule' => $event->schedule, 'args' => $event->args, 'interval' => $event->interval, ); uksort( $crons, 'strnatcasecmp' ); return _set_cron_array( $crons, $wp_error ); }
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。