wpsc_preload_post_types_args filter-hookWPSCache 1.0

Usage

add_filter( 'wpsc_preload_post_types_args', 'wp_kama_wpsc_preload_post_types_args_filter' );

/**
 * Function for `wpsc_preload_post_types_args` filter-hook.
 * 
 * @param  $array 
 *
 * @return 
 */
function wp_kama_wpsc_preload_post_types_args_filter( $array ){

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

Where the hook is called

wpsc_get_post_types()
wpsc_preload_post_types_args
wp-super-cache/wp-cache.php 3932-3935
$preload_type_args = apply_filters( 'wpsc_preload_post_types_args', array(
	'public'             => true,
	'publicly_queryable' => true
) );

Where the hook is used in WP Super Cache

Usage not found.