wpsc_cache_types
Usage
add_filter( 'wpsc_cache_types', 'wp_kama_wpsc_cache_types_filter' );
/**
* Function for `wpsc_cache_types` filter-hook.
*
* @param $array
*
* @return
*/
function wp_kama_wpsc_cache_types_filter( $array ){
// filter...
return $array;
}
- $array
- -
Where the hook is called
wpsc_cache_types
wp-super-cache/wp-cache.php 2438
$cache_types = apply_filters( 'wpsc_cache_types', array( 'supercache', 'wpcache' ) );