0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-06 22:40:14 -05:00

🐛 Fixed Sitemap when permalink contains Primary Tag (#9273)

closes #9272

- included tags in sitemap post-generator
This commit is contained in:
Guillem Andreu 2017-11-27 12:38:56 +01:00 committed by Katharina Irrgang
parent 94360c8a32
commit 860b38a1a7

View file

@ -31,7 +31,7 @@ _.extend(PostMapGenerator.prototype, {
status: 'published',
staticPages: false,
limit: 'all',
include: 'author'
include: 'author,tags'
}).then(function (resp) {
return resp.posts;
});