wpseek.com
A WordPress-centric search engine for devs and theme authors
_get_cron_array is private and should not be used in themes or plugins directly.
_get_cron_array › WordPress Function
Since2.1.0
Deprecatedn/a
› _get_cron_array ( No parameters )
| Access: |
|
| Returns: |
|
| Defined at: |
|
| Codex: | |
| Change Log: |
|
Retrieves cron info array option.
Related Functions: _set_cron_array, _upgrade_cron_array, rest_is_array, __return_empty_array, _get_comment_reply_id
Source
function _get_cron_array() {
$cron = get_option( 'cron' );
if ( ! is_array( $cron ) ) {
return array();
}
/**
* @var array{ version: int, ...<int, array<string, array<string, array{ schedule: string|false, args: array<mixed>, interval?: non-negative-int }>>> }
* |array<int, array<string, array{ schedule: string|false, args: array<mixed>, interval?: non-negative-int }>> $cron
*/
if ( ! isset( $cron['version'] ) ) {
$cron = _upgrade_cron_array( $cron );
}
unset( $cron['version'] );
/** @var array<int, array<string, array<string, array{ schedule: string|false, args: array<mixed>, interval?: non-negative-int }>>> $cron */
return $cron;
}