wpsc_reset_preload_counter()
This function will reset the preload cache counter
No Hooks.
Returns
null. Nothing (null).
Usage
wpsc_reset_preload_counter();
wpsc_reset_preload_counter() wpsc reset preload counter code WPSCache 3.1.0
function wpsc_reset_preload_counter() {
update_option(
'preload_cache_counter',
array(
'c' => 0,
't' => time(),
)
);
}