<?php //=============================================================================// FUNCTIONS.PHP (CHILD THEME) //=============================================================================// Enqueue Parent Stylesheet (KEEP THIS ACTIVE!) //=============================================================================add_filter('x_enqueue_parent_stylesheet','__return_true');//=============================================================================// FORCEFULLY DEQUEUE ALL FONT AWESOME (KEEP AS-IS) //=============================================================================function dequeue_all_font_awesome_styles(){wp_dequeue_style('x-font-awesome');wp_deregister_style('x-font-awesome');wp_dequeue_style('fontawesome-solid');wp_deregister_style('fontawesome-solid');wp_dequeue_style('fontawesome-regular');wp_deregister_style('fontawesome-regular');wp_dequeue_style('fontawesome-brands');wp_deregister_style('fontawesome-brands')}add_action('wp_enqueue_scripts','dequeue_all_font_awesome_styles',999);//=============================================================================// ✅ SAFE LCP PRELOAD SYSTEM (NONCE-SAFE / CSP-SAFE) //=============================================================================function driving_cool_preload_home_only(){if (is_front_page()){echo '<link rel="preload" as="image" href="https://drivings-cool.com/wp-content/uploads/2025/11/Passed-driving-test-in-Musselburgh.jpg.webp" type="image/webp" crossorigin>'}}add_action('wp_head','driving_cool_preload_home_only',2);