Limit words in RSS Feed

  • What’s your URL?
    I’m testing in Localhost
  • What version of Ghost are you using?
    Ghost-CLI version: 1.17.3
    Ghost version: 4.8.4
  • Theme Used: Casper

I’m trying Custom RSS feature. I have created a file called rss.hbs under my theme folder. I’m using Casper. So it’s under /content/themes/casper/rss.hbs

I’m trying to limit the Content (Word Count). Right now, It’s showing the whole content in rss feed.

This is the Code I’m using in rss.hbs file

<rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:media="http://search.yahoo.com/mrss/" version="2.0">
<channel>
<title><![CDATA[ {{@site.title}} ]]></title>
<description><![CDATA[ {{@site.description}} ]]></description>
<link>{{@site.url}}</link>
<image>
    <url>{{@site.url}}/favicon.png</url>
    <title>{{@site.title}}</title>
    <link>{{@site.url}}</link>
</image>
<lastBuildDate>{{date format="ddd, DD MMM YYYY HH:mm:ss ZZ"}}</lastBuildDate>
<atom:link href="{{@site.url}}" rel="self" type="application/rss+xml"/>
<ttl>60</ttl>

{{#get "posts" limit="all" include="authors,tags"}}
    {{#foreach posts}}
    <item>
        <title><![CDATA[ {{title}} ]]></title>
        <description><![CDATA[ {{excerpt}} ]]></description>
        <link>{{url absolute="true"}}</link>
        <guid isPermaLink="false">{{id}}</guid>
        <category><![CDATA[ {{primary_tag.name}} ]]></category>
        <dc:creator><![CDATA[ {{primary_author.name}} ]]></dc:creator>
        <pubDate>{{date format="ddd, DD MMM YYYY HH:mm:ss ZZ"}}</pubDate>
        <media:content url="{{feature_image}}" medium="image"/>
        <content:encoded><![CDATA[ {{excerpt}}<p>&nbsp;</p><p><a href="{{url absolute="true"}}">Continue Reading..</a></p> ]]></content:encoded>
    </item>
    {{/foreach}}
{{/get}}

</channel>
</rss>

As per Documentation I have created a routes.yaml file

routes:

collections:
  /:
    permalink: /{slug}/
    template: index
    
  /rss/:
    permalink: /rss/
    template: rss
    content_type: text/xml

taxonomies:
  tag: /tag/{slug}/
  author: /author/{slug}/

But it’s still /rss is still showing whole post.

I have already created a post Limit RSS feed post word count long back, But the solution isn’t working.

Any Input on this?