wpsc_get_protected_directories()WPSCache 1.0

Хуки из функции

Возвращает

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

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

wpsc_get_protected_directories();

Код wpsc_get_protected_directories() WPSCache 1.12.0

function wpsc_get_protected_directories() {
	global $cache_path, $blog_cache_dir;
	return apply_filters(
		'wpsc_protected_directories',
		array(
			$cache_path . '.htaccess',
			$cache_path . 'index.html',
			$blog_cache_dir,
			$blog_cache_dir . 'index.html',
			$blog_cache_dir . 'meta',
			$blog_cache_dir . 'meta/index.html',
			$cache_path . 'supercache/index.html',
			$cache_path . 'supercache',
		)
	);
}