

/**
 * Font Corruption Fix - Enqueue CSS Override
 * Added automatically by deploy_font_fix.py
 * Date: 2026-01-24
 */
function enqueue_font_corruption_fix() {
    $css_path = get_template_directory() . '/font-corruption-fix.css';
    if (file_exists($css_path)) {
        wp_enqueue_style(
            'font-corruption-fix',
            get_template_directory_uri() . '/font-corruption-fix.css',
            array(),
            '20260124' // Version for cache busting
        );
    }
}
add_action('wp_enqueue_scripts', 'enqueue_font_corruption_fix', 999); // High priority to override theme styles

/**
 * Missions Page Fix - Data Syntax Fixed
 * Updated: 2026-01-30
 * Reason: Fixed mission-data.php syntax (converted from JavaScript to PHP)
 * Status: Page now functional - redirect removed
 */


/**
 * SEO Meta Tags Fix
 * Added automatically by deploy_seo_fix.py
 * Date: 2026-01-24
 */
require_once get_template_directory() . '/seo-meta-fix.php';
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="https://weareswarm.site/wp-sitemap-index.xsl" ?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"><sitemap><loc>https://weareswarm.site/wp-sitemap-posts-post-1.xml</loc></sitemap><sitemap><loc>https://weareswarm.site/wp-sitemap-posts-page-1.xml</loc></sitemap><sitemap><loc>https://weareswarm.site/wp-sitemap-taxonomies-category-1.xml</loc></sitemap><sitemap><loc>https://weareswarm.site/wp-sitemap-taxonomies-post_tag-1.xml</loc></sitemap><sitemap><loc>https://weareswarm.site/wp-sitemap-users-1.xml</loc></sitemap></sitemapindex>
