Merhabalar
yaptırmış oldugum sitede sitemapimg.php dosyasında sitemap hatalı kodlar bu şekilde ama görselleri google algılamıyor??

Problem nedir acaba ??

<?php
header("Content-Type: text/xml; charset=utf-8");
include 'datakontrol/ayarlar.php';
$xml ='<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.google.com/schemas/sitemap/0.84">
<url>
<loc>'.$site_url.'</loc>
<changefreq>daily</changefreq>
<priority>1.0</priority>
</url>'
;
$veri = mysql_query("SELECT resim FROM otel_resim ORDER BY id DESC");
while($yaz = mysql_fetch_array($veri)){
$link = $site_url."/avsa-resimleri/otel/".$yaz["resim"]."";
$xml.= '<url>
<loc>'.$link.'</loc>
<changefreq>always</changefreq>
<priority>0.5</priority>
</url>
';
}
$veri =
$xml .= '</urlset>';
echo $xml;
?>