This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.

_set_cron_array( array $cron )

Updates the CRON option with the new CRON array.


Parameters

$cron

(array) (Required) Cron info array from _get_cron_array().


Source

File: wp-includes/cron.php

function _set_cron_array($cron) {
	$cron['version'] = 2;
	update_option( 'cron', $cron );
}


Changelog

Changelog
Version Description
WP-2.1.0 Introduced.