wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



wp_clean_update_cache › WordPress Function

Da4.1.0
Deprecaton/a
wp_clean_update_cache ( Nessun parametro )
Definito a:
Codex:

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



Sorgenti

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' );
}