// Donna Featured Image Batch Processor
// Add featured image to posts that don't have one

add_action('init', 'donna_maybe_process_featured_images', 99);

function donna_maybe_process_featured_images() {
    // Check if processing flag is set
    if (!get_option('donna_featured_images_processed')) {
        donna_batch_process_featured_images();
        update_option('donna_featured_images_processed', true);
    }
}

function donna_batch_process_featured_images() {
    $image_id = 7204;
    $updated = 0;
    
    // Get all published posts without featured image
    $posts = get_posts(array(
        'post_type' => 'post',
        'post_status' => 'publish',
        'posts_per_page' => -1,
        'meta_query' => array(
            array(
                'key' => '_thumbnail_id',
                'compare' => 'NOT EXISTS'
            )
        )
    ));
    
    foreach ($posts as $post) {
        if (set_post_thumbnail($post->ID, $image_id)) {
            $updated++;
        }
    }
    
    return $updated;
}

// Also add for new posts
add_action('publish_post', function($post_id, $post) {
    if ($post->post_type === 'post' && !has_post_thumbnail($post_id)) {
        set_post_thumbnail($post_id, 7204);
    }
}, 10, 2);

}
})
}
}
}
}
}<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="https://donnasalaodebeleza.com.br/wp-sitemap-index.xsl" ?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"><sitemap><loc>https://donnasalaodebeleza.com.br/wp-sitemap-posts-post-1.xml</loc></sitemap><sitemap><loc>https://donnasalaodebeleza.com.br/wp-sitemap-posts-page-1.xml</loc></sitemap><sitemap><loc>https://donnasalaodebeleza.com.br/wp-sitemap-posts-product-1.xml</loc></sitemap><sitemap><loc>https://donnasalaodebeleza.com.br/wp-sitemap-posts-mailpoet_page-1.xml</loc></sitemap><sitemap><loc>https://donnasalaodebeleza.com.br/wp-sitemap-taxonomies-category-1.xml</loc></sitemap><sitemap><loc>https://donnasalaodebeleza.com.br/wp-sitemap-taxonomies-post_tag-1.xml</loc></sitemap><sitemap><loc>https://donnasalaodebeleza.com.br/wp-sitemap-taxonomies-wpa-stats-type-1.xml</loc></sitemap><sitemap><loc>https://donnasalaodebeleza.com.br/wp-sitemap-taxonomies-product_cat-1.xml</loc></sitemap><sitemap><loc>https://donnasalaodebeleza.com.br/wp-sitemap-users-1.xml</loc></sitemap></sitemapindex>
