wp_supercache_badbehaviour()WPSCache 1.0

No Hooks.

Return

null. Nothing (null).

Usage

wp_supercache_badbehaviour( $file );
$file (required)
-

wp_supercache_badbehaviour() code WPSCache 1.12.0

function wp_supercache_badbehaviour( $file ) {
	global $cache_badbehaviour;

	if ( 1 !== $cache_badbehaviour ) {
		return $file;
	}
	wp_supercache_badbehaviour_include();
	return $file;
}