WC_Helper_Updater::flush_updates_cache()public staticWC 1.0

Flushes cached update data.

Method of the class: WC_Helper_Updater{}

No Hooks.

Return

null. Nothing (null).

Usage

$result = WC_Helper_Updater::flush_updates_cache();

WC_Helper_Updater::flush_updates_cache() code WC 8.7.0

public static function flush_updates_cache() {
	delete_transient( '_woocommerce_helper_updates' );
	delete_transient( '_woocommerce_helper_updates_count' );
	delete_site_transient( 'update_plugins' );
	delete_site_transient( 'update_themes' );
}