WPSEO_Statistic_Integration::clear_cache()
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() WPSEO Statistic Integration::clear cache Yoast 24.0
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 ); }