wpsc_preload_post_types filter-hookWPSCache 1.0

Usage

add_filter( 'wpsc_preload_post_types', 'wp_kama_wpsc_preload_post_types_filter' );

/**
 * Function for `wpsc_preload_post_types` filter-hook.
 * 
 * @param  $condition 
 *
 * @return 
 */
function wp_kama_wpsc_preload_post_types_filter( $condition ){

	// filter...
	return $condition;
}
$condition
-

Where the hook is called

wpsc_get_post_types()
wpsc_preload_post_types
wp-super-cache/wp-cache.php 3854
$post_types = (array) apply_filters( 'wpsc_preload_post_types', get_post_types( $preload_type_args, 'names', 'or' ));

Where the hook is used in WP Super Cache

Usage not found.