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



get_theme_updates › WordPress Function

Seit2.9.0
Veraltetn/v
get_theme_updates ( Keine Parameter )
Gibt zurück:
  • (array)
Definiert in:
Codex:

Retrieves themes with updates available.



Quellcode

function get_theme_updates() {
	$current = get_site_transient( 'update_themes' );

	if ( ! isset( $current->response ) ) {
		return array();
	}

	$update_themes = array();

	foreach ( $current->response as $stylesheet => $data ) {
		$update_themes[ $stylesheet ]         = wp_get_theme( $stylesheet );
		$update_themes[ $stylesheet ]->update = $data;
	}

	return $update_themes;
}