get_wpcachehome()
Хуков нет.
Возвращает
null. Ничего (null).
Использование
get_wpcachehome();
Код get_wpcachehome() get wpcachehome WPSCache 3.0.3
function get_wpcachehome() {
if ( function_exists( '_deprecated_function' ) ) {
_deprecated_function( __FUNCTION__, 'WP Super Cache 1.6.5' );
}
if ( ! defined( 'WPCACHEHOME' ) ) {
if ( is_file( __DIR__ . '/wp-cache-config-sample.php' ) ) {
define( 'WPCACHEHOME', trailingslashit( __DIR__ ) );
} elseif ( is_file( __DIR__ . '/wp-super-cache/wp-cache-config-sample.php' ) ) {
define( 'WPCACHEHOME', __DIR__ . '/wp-super-cache/' );
} else {
die( sprintf( esc_html__( 'Please create %s/wp-cache-config.php from wp-super-cache/wp-cache-config-sample.php', 'wp-super-cache' ), esc_attr( WPCACHECONFIGPATH ) ) );
}
}
}