wpsc_remove_advanced_cache()
No Hooks.
Return
null
. Nothing (null).
Usage
wpsc_remove_advanced_cache();
wpsc_remove_advanced_cache() wpsc remove advanced cache code WPSCache 1.12.4
function wpsc_remove_advanced_cache() { global $wpsc_advanced_cache_filename; if ( file_exists( $wpsc_advanced_cache_filename ) ) { $file = file_get_contents( $wpsc_advanced_cache_filename ); if ( strpos( $file, "WP SUPER CACHE 0.8.9.1" ) || strpos( $file, "WP SUPER CACHE 1.2" ) ) { unlink( $wpsc_advanced_cache_filename ); } } }