wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



_get_cron_array › WordPress Function

Seit2.1.0
Veraltetn/v
_get_cron_array ( Keine Parameter )
Zugriff:
  • private
Gibt zurück:
  • (array[]) Array of cron events.
Definiert in:
Codex:
Changelog:
  • 6.1.0

Retrieves cron info array option.



Quellcode

function _get_cron_array() {
	$cron = get_option( 'cron' );
	if ( ! is_array( $cron ) ) {
		return array();
	}

	if ( ! isset( $cron['version'] ) ) {
		$cron = _upgrade_cron_array( $cron );
	}

	unset( $cron['version'] );

	return $cron;
}