wpsc_send_uninstall_errors хук-фильтрWPSCache 1.0

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

add_filter( 'wpsc_send_uninstall_errors', 'wp_kama_wpsc_send_uninstall_errors_filter' );

/**
 * Function for `wpsc_send_uninstall_errors` filter-hook.
 * 
 * @param  $1 
 *
 * @return 
 */
function wp_kama_wpsc_send_uninstall_errors_filter( $1 ){

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

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

wp_cache_disable_plugin()
wpsc_send_uninstall_errors
wp-super-cache/wp-cache.php 3758
if ( apply_filters( 'wpsc_send_uninstall_errors', 1 ) ) {

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

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