Closed demlak closed 6 years ago
Currently, the rss-feed does only include the text field. In most cases, this will split the intention of a blog post on the rss feed.
To include Intro field on demand, in site/plugin/feeds/template.php change the following line:
site/plugin/feeds/template.php
<description><![CDATA[<?php echo $item->{$textfield}()->kirbytext() ?>]]></description>
to
<description><![CDATA[<?php if($item->intro()): ?><?php echo $item->intro()->kirbytext() ?><?php endif ?><?php echo $item->{$textfield}()->kirbytext() ?>]]></description>
Fixed.
Currently, the rss-feed does only include the text field. In most cases, this will split the intention of a blog post on the rss feed.
To include Intro field on demand, in
site/plugin/feeds/template.php
change the following line:to
19