Retrieve cron info array option.
Signature
_get_cron_array()
Return
(array) CRON info array.
Source
function _get_cron_array() {
$cron = get_option('cron');
if ( ! is_array($cron) )
return false;
if ( !isset($cron['version']) )
$cron = _upgrade_cron_array($cron);
unset($cron['version']);
return $cron;
}
WP Trac GitHub Bitbucket
Link here
-
URL
http://queryposts.com/function/_get_cron_array/ -
HTML
<a href='http://queryposts.com/function/_get_cron_array/'>_get_cron_array()</a> -
Markdown
[_get_cron_array()](http://queryposts.com/function/_get_cron_array/) -
BBCode
[url=http://queryposts.com/function/_get_cron_array/]_get_cron_array()[/url]