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

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

add_filter( 'supercacherewriteconditions', 'wp_kama_supercacherewriteconditions_filter' );

/**
 * Function for `supercacherewriteconditions` filter-hook.
 * 
 * @param  $condition_rules 
 *
 * @return 
 */
function wp_kama_supercacherewriteconditions_filter( $condition_rules ){

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

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

wpsc_get_htaccess_info()
supercacherewriteconditions
wp-super-cache/wp-cache.php 3136
$condition_rules = apply_filters( 'supercacherewriteconditions', $condition_rules );

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

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