Skip to content

Commit 0ffd045

Browse files
author
Patrick Garman
committed
Add Post Tags to RSS Feed
Issue #1722
1 parent aec94f2 commit 0ffd045

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

core/server/controllers/frontend.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,8 @@ frontendControllers = {
143143
title: _.escape(post.title),
144144
guid: post.uuid,
145145
url: siteUrl + '/' + post.slug + '/',
146-
date: post.published_at
146+
date: post.published_at,
147+
categories: _.pluck(post.tags, 'name')
147148
},
148149
content = post.html;
149150

0 commit comments

Comments
 (0)