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



wp_clean_update_cache › WordPress Function

Seit4.1.0
Veraltetn/v
wp_clean_update_cache ( Keine Parameter )
Definiert in:
Codex:

Clears existing update caches for plugins, themes, and core.



Quellcode

function wp_clean_update_cache() {
	if ( function_exists( 'wp_clean_plugins_cache' ) ) {
		wp_clean_plugins_cache();
	} else {
		delete_site_transient( 'update_plugins' );
	}

	wp_clean_themes_cache();

	delete_site_transient( 'update_core' );
}