wpsc_reset_preload_counter()WPSCache 1.0

This function will reset the preload cache counter

Хуков нет.

Возвращает

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

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

wpsc_reset_preload_counter();

Код wpsc_reset_preload_counter() WPSCache 1.12.4

function wpsc_reset_preload_counter() {
	update_option(
		'preload_cache_counter',
		array(
			'c' => 0,
			't' => time(),
		)
	);
}