wpsc_reset_preload_counter()
This function will reset the preload cache counter
Хуков нет.
Возвращает
null. Ничего (null).
Использование
wpsc_reset_preload_counter();
Код wpsc_reset_preload_counter() wpsc reset preload counter WPSCache 3.1.1
function wpsc_reset_preload_counter() {
update_option(
'preload_cache_counter',
array(
'c' => 0,
't' => time(),
)
);
}