/** * 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'; weareswarm.site