function dvacom_get_site_context() {
    static $context = null;
    if ($context !== null) return $context;

    $theme_dir = get_stylesheet_directory();
    
    // 1. Умолчания
    $mark = 'single';
    $lang = 'uk';
    $path = 'none';

    // 2. Определяем путь, если это страница
    if (is_page()) {
        $slug = get_post_field('post_name', get_queried_object_id());
        $path = $theme_dir . '/lp/page-' . $slug . '.php';
    }

    // 3. Логика расстановки
    if (is_front_page() && file_exists($theme_dir . '/front-page.php')) {
        $mark = 'front';
        $lang = 'ru';
    } elseif (is_home()) {
        $mark = 'home';
        $lang = 'uk';
    } elseif (is_404()) {
        $mark = 'error';
        $lang = 'uk';
    } elseif (file_exists($path)) { 
        // Если файл существует и он в папке LP (или любое условие на путь)
        $mark = 'lp';
        $lang = 'ru';
    }

    $context = [
        'mark' => $mark,
        'lang' => $lang,
        'path' => $path 
    ];
    
    return $context;
}<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="https://diachenkov.com/wp-sitemap-index.xsl" ?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"><sitemap><loc>https://diachenkov.com/wp-sitemap-posts-page-1.xml</loc></sitemap></sitemapindex>
