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

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

add_filter( 'wpsc_enable_wp_config_edit', 'wp_kama_wpsc_enable_wp_config_edit_filter' );

/**
 * Function for `wpsc_enable_wp_config_edit` filter-hook.
 * 
 * @param  $true 
 *
 * @return 
 */
function wp_kama_wpsc_enable_wp_config_edit_filter( $true ){

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

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

wp_cache_create_advanced_cache()
wpsc_enable_wp_config_edit
wp_cache_disable_plugin()
wpsc_enable_wp_config_edit
wp-super-cache/wp-cache.php 2260
if ( ! apply_filters( 'wpsc_enable_wp_config_edit', true ) ) {
wp-super-cache/wp-cache.php 3715
if ( apply_filters( 'wpsc_enable_wp_config_edit', true ) ) {

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

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