wp_supercache_badbehaviour()WPSCache 1.0

Хуков нет.

Возвращает

null. Ничего (null).

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

wp_supercache_badbehaviour( $file );
$file (обязательный)
-

Код wp_supercache_badbehaviour() WPSCache 1.12.0

function wp_supercache_badbehaviour( $file ) {
	global $cache_badbehaviour;

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