function tbl_fix_missing_image_meta() {

    $args = [
        'post_type'      => 'attachment',
        'post_mime_type' => 'image',
        'posts_per_page' => 20
    ];

    $images = get_posts($args);

    foreach ($images as $img) {

        $alt = get_post_meta($img->ID, '_wp_attachment_image_alt', true);

        if (empty($alt)) {

            $title = $img->post_title;

            update_post_meta($img->ID, '_wp_attachment_image_alt', $title);

            wp_update_post([
                'ID' => $img->ID,
                'post_excerpt' => $title,
                'post_content' => $title
            ]);
        }
    }
}

// Run every day
if (!wp_next_scheduled('tbl_daily_image_fix')) {
    wp_schedule_event(time(), 'daily', 'tbl_daily_image_fix');
}

add_action('tbl_daily_image_fix', 'tbl_fix_missing_image_meta');<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" href="//www.hindi.delhinewslive.com/main-sitemap.xsl"?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
	<sitemap>
		<loc>https://www.hindi.delhinewslive.com/post-sitemap1.xml</loc>
		<lastmod>2026-04-23T10:39:48+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://www.hindi.delhinewslive.com/post-sitemap2.xml</loc>
		<lastmod>2026-04-23T03:09:10+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://www.hindi.delhinewslive.com/post-sitemap3.xml</loc>
		<lastmod>2026-04-23T03:08:34+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://www.hindi.delhinewslive.com/post-sitemap4.xml</loc>
		<lastmod>2026-04-22T16:23:15+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://www.hindi.delhinewslive.com/post-sitemap5.xml</loc>
		<lastmod>2026-04-22T10:49:40+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://www.hindi.delhinewslive.com/page-sitemap.xml</loc>
		<lastmod>2026-04-12T15:47:23+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://www.hindi.delhinewslive.com/category-sitemap.xml</loc>
		<lastmod>2026-04-23T10:39:48+00:00</lastmod>
	</sitemap>
</sitemapindex>
<!-- XML Sitemap generated by Rank Math SEO Plugin (c) Rank Math - rankmath.com -->