Files
profile/inc/get_cached_alm.php
Andrey Kuvshinov 8fc8cbae32 add files
2025-07-09 21:21:17 +03:00

14 lines
320 B
PHP

<?php
// Фильтр для изменения пути кеша
add_filter('alm_cache_path', function() use ($alm_cache_dir) {
$alm_cache_dir = WP_CONTENT_DIR . '/cache/alm_custom_cache/';
if (!file_exists($alm_cache_dir)) {
wp_mkdir_p($alm_cache_dir);
}
return $alm_cache_dir;
});