wp_unschedule_event
函数
wp_unschedule_event ( $timestamp, $hook, $args = array(), $wp_error = false )
- 参数
-
-
(int)
$timestamp
Unix timestamp (UTC) of the event.- Required: 是
-
(string)
$hook
Action hook of the event.- Required: 是
-
(array)
$args
Optional. Array containing each separate argument to pass to the hook’s callback function. Although not passed to a callback, these arguments are used to uniquely identify the event, so they should be the same as those used when originally scheduling the event. 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 unscheduled. False or WP_Error on failure.
- 定义位置
-
-
wp-includes/cron.php
, line 459
-
wp-includes/cron.php
- 引入
- 2.1.0
- 弃用
- –
Unschedule a previously scheduled event.
The $timestamp and $hook parameters are required so that the event can be
identified.
function wp_unschedule_event( $timestamp, $hook, $args = array(), $wp_error = false ) { // Make sure timestamp is a positive integer. if ( ! is_numeric( $timestamp ) || $timestamp
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。