Is this manual Official Ghost + Custom RSS Integration compatible with Ghost 4.0?
when I use this code fragment, I get weird published date (31 Dec 1969) and no picture
{{#get "posts" limit="all" include="authors"}}
{{#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}} ]]></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> </p><p><a href="{{url absolute="true"}}">Read More ...</a></p> ]]></content:encoded>
</item>
{{/foreach}}
{{/get}}
And how to replace the default RSS or make another one with blocking the default one?