WPSEO_Statistic_Integration::clear_cache()publicYoast 1.0

Clears the dashboard widget items cache.

Метод класса: WPSEO_Statistic_Integration{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

$WPSEO_Statistic_Integration = new WPSEO_Statistic_Integration();
$WPSEO_Statistic_Integration->clear_cache();

Код WPSEO_Statistic_Integration::clear_cache() Yoast 22.4

public function clear_cache() {
	// Bail if this is a multisite installation and the site has been switched.
	if ( is_multisite() && ms_is_switched() ) {
		return;
	}

	delete_transient( WPSEO_Statistics_Service::CACHE_TRANSIENT_KEY );
}