/*
Theme Name: Flozen Theme Child
Theme URI: https://demo.nasatheme.com/flozen-intro/
Description: This is a child theme for Flozen Theme
Author: NasaTheme team
Author URI: https://nasatheme.com
Template: flozen-theme
Version: 1.0
*/


/*************** ADD YOUR CUSTOM CSS IN THIS AREA ***************/

// ---- TEMP: Fix Rank Math sitemap exclusions (runs once, auto-disables) ----
add_action('init', function() {
    if (get_option('_eon_sitemap_fix_v1')) return;
    $opts = get_option('rank-math-options-sitemap', array());
    $opts['exclude_posts'] = '1848, 1869, 2093, 1668, 1696, 1666, 2112, 1664';
    update_option('rank-math-options-sitemap', $opts);
    global $wpdb;
    $wpdb->query("DELETE FROM {$wpdb->options} WHERE option_name LIKE '_transient_rank_math_sitemap_%' OR option_name LIKE '_transient_timeout_rank_math_sitemap_%'");
    update_option('_eon_sitemap_fix_v1', 1);
});
// ---- END TEMP ----
