Wordpress XML Sitemap Plugin Images

Image sitemaps are an extension of XML sitemaps which includes image information along side the page. Incuding images in your sitemap can help google find and index your images in search results.

By enabling the setting in our wordpress plugin we will try to automatically parse your page, extract any images and include them in your sitemap.

To enable images simply check the box in the main sitemap settings in the general section.

Sitemap settings images

This will result in sitemap entries that include images along the lines of :

<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
        xmlns:image="http://www.google.com/schemas/sitemap-image/1.1">
  <url>
    <loc>https://www.xmlsitemapgenerator.org/en/</loc>
    <lastmod>2023-10-12</lastmod>
    <changefreq>monthly</changefreq>
    <priority>0.8</priority>
    <image:image>
      <image:loc>https://www.xmlsitemapgenerator.org/images/image1.jpg</image:loc>
      <image:caption>Example Image 1</image:caption>
    </image:image>
    <image:image>
      <image:loc>https://www.xmlsitemapgenerator.org/images/image2.jpg</image:loc>
      <image:caption>Example Image 2</image:caption>
    </image:image>
  </url>
</urlset>