It can be done by
- Redefining get_urls method in your inherited class (add image information)
- Change default template to the one which required to render image info
here is the code:
- Add these methods in your class - these methods are almost same as defined in django's sitemap framework, but differ by the way it prepares data that need to be render in the template
class MySItemapClass(Sitemap):
def item():
.........
def __get(self, name, obj, default=None):
try:
attr = getattr(self, name)
except AttributeError:
return default
if callable(attr):
return attr(obj)
return attr
def get_urls(self, page=1, site=None, protocol=None):
# Determine protocol
if self.protocol is not None:
protocol = self.protocol
if protocol is None:
protocol = 'http'
# Determine domain
if site is None:
if Site._meta.installed:
try:
site = Site.objects.get_current()
except Site.DoesNotExist:
pass
if site is None:
raise ImproperlyConfigured("To use sitemaps, either enable the sites framework or pass a Site/RequestSite object in your view.")
domain = site.domain
urls = []
for item in self.paginator.page(page).object_list:
loc = "%s://%s%s" % (protocol, domain, self.__get('location', item))
priority = self.__get('priority', item, None)
url_info = {
'item': item,
'location': loc,
'lastmod': self.__get('lastmod', item, None),
'changefreq': self.__get('changefreq', item, None),
'priority': str(priority is not None and priority or ''),
'images' : get_image(protocol, domain,item), # changed here
}
urls.append(url_info)
return urls
define get_image method as you please
define your custom template.
mine look like this - note change in defining namespaces("urlset")
<?xml version="1.0" encoding="UTF-8"?>
{% spaceless %}
{% for url in urlset %}
{{ url.location }}
{% if url.images %}
{% for image in url.images %}
{{image}}
{% endfor %}
{% endif %}
{% if url.lastmod %}{{ url.lastmod|date:"Y-m-d" }}{% endif %}
{% if url.changefreq %}{{ url.changefreq }}{% endif %}
{% if url.priority %}{{ url.priority }}{% endif %}
{% endfor %}
{% endspaceless %}
Override to use new template rather than the default template
url(r'^sitemap-(?P.+).xml$', 'django.contrib.sitemaps.views.sitemap', {'sitemaps': sitemaps,'template_name': 'seo/sitemap.xml'}),