1
我正在嘗試使用Django站點地圖。Sitemaps中的優先問題
class BlogSiteMap(Sitemap):
"""A simple class to get sitemaps for blog"""
changefreq = 'hourly'
priority = 0.5
def items(self):
return Blog.objects.order_by('-pubDate')
def lastmod(self, obj):
return obj.pubDate
我的問題is..I想成立前3個博客對象的優先級爲1.0,他們的休息 爲0.5的優先級。我看了documentation,但是沒辦法。
任何幫助將是可觀的。提前致謝。