Files
profile/inc/get_cached_alm.php

14 lines
320 B
PHP
Raw Normal View History

2025-07-09 21:21:17 +03:00
<?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;
});