我正在将Magento 1.9.2.4 Community Edition与包含博客功能的自定义模板一起使用。
我的RSS feed中的“描述”很长,并且显示了完整的帖子,我想知道如何减少它的长度,我的目标是仅显示我的MailChimp电子邮件模板的简短摘录。
我能够使用以下PHP代码在此处创建RSS feed的Rss.php进行跟踪:
$data = array(
'title' => $post->getTitle(),
'link' => $this->getUrl($route . "/" . $post->getIdentifier()),
'description' => $processor->filter($post->getPostContent()),
'lastUpdate' => strtotime($post->getCreatedTime()),
);
我不希望完整的博客文章显示在RSS Description feed中,而只是将摘要截断为一定数量的字符。