wpsc_reset_preload_counter()WPSCache 1.0

This function will reset the preload cache counter

No Hooks.

Return

null. Nothing (null).

Usage

wpsc_reset_preload_counter();

wpsc_reset_preload_counter() code WPSCache 1.12.4

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