wpseek.com
A WordPress-centric search engine for devs and theme authors
_set_cron_array is private and should not be used in themes or plugins directly.
_set_cron_array › WordPress Function
Since2.1.0
Deprecatedn/a
› _set_cron_array ( $cron, $wp_error = false )
Access: |
|
Parameters: (2) |
|
Returns: |
|
Defined at: |
|
Codex: | |
Change Log: |
|
Updates the cron option with the new cron array.
Related Functions: _get_cron_array, _upgrade_cron_array, rest_is_array, __return_empty_array, wp_is_numeric_array
Source
function _set_cron_array( $cron, $wp_error = false ) { if ( ! is_array( $cron ) ) { $cron = array(); } $cron['version'] = 2; $result = update_option( 'cron', $cron, true ); if ( $wp_error && ! $result ) { return new WP_Error( 'could_not_set', __( 'The cron event list could not be saved.' ) ); } return $result; }