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



get_preferred_from_update_core › WordPress Function

Seit2.7.0
Veraltetn/v
get_preferred_from_update_core ( Keine Parameter )
Gibt zurück:
  • (object|array|false) The response from the API on success, false on failure.
Definiert in:
Codex:

Selects the first update version from the update_core option.



Quellcode

function get_preferred_from_update_core() {
	$updates = get_core_updates();

	if ( ! is_array( $updates ) ) {
		return false;
	}

	if ( empty( $updates ) ) {
		return (object) array( 'response' => 'latest' );
	}

	return $updates[0];
}