_set_cron_array

函数


_set_cron_array ( $cron, $wp_error = false )
Access
Private
参数
  • (array[])
    $cron
    Array of cron info arrays from _get_cron_array().
    Required:
  • (bool)
    $wp_error
    Optional. Whether to return a WP_Error on failure. Default false.
    Required:
    Default: false
返回值
  • (bool|WP_Error) True if cron array updated. False or WP_Error on failure.
定义位置
  • wp-includes/cron.php
    , line 1182
引入
2.1.0
弃用

Updates the cron option with the new cron array.

function _set_cron_array( $cron, $wp_error = false ) {
	if ( ! is_array( $cron ) ) {
		$cron = array();
	}

	$cron['version'] = 2;
	$result          = update_option( 'cron', $cron );

	if ( $wp_error && ! $result ) {
		return new WP_Error(
			'could_not_set',
			__( 'The cron event list could not be saved.' )
		);
	}

	return $result;
}
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。