wpsc_preload_post_types
Использование
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
- -
Где вызывается хук
wpsc_preload_post_types
wp-super-cache/wp-cache.php 3962
$post_types = (array) apply_filters( 'wpsc_preload_post_types', get_post_types( $preload_type_args, 'names', 'or' ));