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



find_core_update › WordPress Function

Seit2.7.0
Veraltetn/v
find_core_update ( $version, $locale )
Parameter: (2)
  • (string) $version Version string to find the update for.
    Erforderlich: Ja
  • (string) $locale Locale to find the update for.
    Erforderlich: Ja
Gibt zurück:
  • (object|false) The core update offering on success, false on failure.
Definiert in:
Codex:

Finds the available update for WordPress core.



Quellcode

function find_core_update( $version, $locale ) {
	$from_api = get_site_transient( 'update_core' );

	if ( ! isset( $from_api->updates ) || ! is_array( $from_api->updates ) ) {
		return false;
	}

	$updates = $from_api->updates;

	foreach ( $updates as $update ) {
		if ( $update->current === $version && $update->locale === $locale ) {
			return $update;
		}
	}

	return false;
}