wpsc_created_advanced_cache хук-событиеWPSCache 1.0

Использование

add_action( 'wpsc_created_advanced_cache', 'wp_kama_wpsc_created_advanced_cache_action' );

/**
 * Function for `wpsc_created_advanced_cache` action-hook.
 * 
 * @return void
 */
function wp_kama_wpsc_created_advanced_cache_action(){

	// action...
}

Где вызывается хук

wp_cache_create_advanced_cache()
wpsc_created_advanced_cache
wp-super-cache/wp-cache.php 2296
do_action( 'wpsc_created_advanced_cache' );

Где используется хук в WP Super Cache

wp-super-cache/inc/boost.php 139
add_action( 'wpsc_created_advanced_cache', 'wpsc_track_move_from_boost' );