![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/cartforge.co/app/design/frontend/Smartwave/porto/Magefan_Blog/templates/rss/ |
<?php /** * Copyright © 2015 Ihor Vansach ([email protected]). All rights reserved. * See LICENSE.txt for license details (http://opensource.org/licenses/osl-3.0.php). * * Glory to Ukraine! Glory to the heroes! */ ?> <?php /** * Blog rss feed template * * @var $block \Magefan\Blog\Block\Rss\Feed */ ?> <?php $_postCollection = $block->getPostCollection(); ?> <?xml version="1.0" encoding="UTF-8" ?> <rss version="2.0"> <channel> <title><?php echo $block->escapeHtml($this->getTitle()) ?></title> <link><?php echo $this->getLink() ?></link> <description><?php echo $block->escapeHtml($this->getDescription()) ?></description> <?php foreach($_postCollection as $_post) { ?> <item> <title><?php echo $block->escapeHtml($_post->getTitle(), null, true) ?></title> <link><?php echo $_post->getPostUrl() ?></link> <description><![CDATA[<?php echo substr($block->stripTags($_post->getContent()), 0, 255) ?>]]></description> <?php if ($featuredImage = $_post->getFeaturedImage()) { ?> <image><?php echo $featuredImage ?></image> <?php } ?> </item> <?php } ?> </channel> </rss>