wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren
_set_cron_array is private and should not be used in themes or plugins directly.
_set_cron_array › WordPress Function
Seit2.1.0
Veraltetn/v
› _set_cron_array ( $cron, $wp_error = false )
Zugriff: |
|
Parameter: (2) |
|
Gibt zurück: |
|
Definiert in: |
|
Codex: | |
Changelog: |
|
Updates the cron option with the new cron array.
Ähnliche Funktionen: _get_cron_array, _upgrade_cron_array, rest_is_array, __return_empty_array, wp_is_numeric_array
Quellcode
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; }