wpseek.com
Bazujące na WordPress narzędzie wyszukiwania dla deweloperów i twórców motywów.



_set_cron_array › WordPress Function

Od2.1.0
Przestarzałyn/a
_set_cron_array ( $cron, $wp_error = false )
Dostęp:
  • private
Parametry: (2)
  • (array[]) $cron Array of cron info arrays from _get_cron_array().
    Wymagane: Tak
  • (bool) $wp_error Optional. Whether to return a WP_Error on failure. Default false.
    Wymagane: Nie
    Domyślny: false
Powrót:
  • (bool|WP_Error) True if cron array updated. False or WP_Error on failure.
Zdefiniowane na:
Codex:
Dziennik zmian:
  • 5.1.0
  • 5.7.0

Updates the cron option with the new cron array.



Źródło

function _set_cron_array( $cron, $wp_error = false ) {
	if ( ! is_array( $cron ) ) {
		$cron = array();
	}

	$cron['version'] = 2;

	$result = update_option( 'cron', $cron );

	if ( $wp_error && ! $result ) {
		return new WP_Error(
			'could_not_set',
			__( 'The cron event list could not be saved.' )
		);
	}

	return $result;
}