Hola Yo tengo un sitemap normal:
<?xml version="1.0" encoding="UTF-8"?>
<urlset
xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9
http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd">
<url>
<loc>http://www.ejemplo.com/index.php</loc>
<changefreq>daily</changefreq>
<priority>1.00</priority>
</url>
<url>
<loc>http://www.ejemplo.com/dos.php</loc>
<changefreq>daily</changefreq>
<priority>0.80</priority>
</url>
<url>
<loc>http://www.ejemplo.com/tres.php</loc>
<changefreq>daily</changefreq>
<priority>0.80</priority>
</url>
</urlset>
y le quiero añadir las imagenes al sitemap.
Por lo que dicen, quedaria asi:
<?xml version="1.0" encoding="UTF-8"?>
<urlset
xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:image="http://www.google.com/schemas/sitemap-image/1.1"
xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9
http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd">
<url>
<loc>http://www.ejemplo.com/index.php</loc>
<changefreq>daily</changefreq>
<priority>1.00</priority>
<image:image>
<image:loc>www.ejemplo.com/images/uno.jpg</image:loc>
</image:image>
<image:image>
<image:loc>www.ejemplo.com/images/dos.jpg</image:loc>
</image:image>
</url>
<url>
<loc>http://www.ejemplo.com/dos.php</loc>
<changefreq>daily</changefreq>
<priority>0.80</priority>
</url>
<url>
<loc>http://www.ejemplo.com/tres.php</loc>
<changefreq>daily</changefreq>
<priority>0.80</priority>
</url>
</urlset>
Seria asi?
Y para añadir <image:caption> y <image:title>?
Como quedaria
saludos