supercacherewriteconditions filter-hookWPSCache 1.0

Usage

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
-

Where the hook is called

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

Where the hook is used in WP Super Cache

Usage not found.