在K2.2中将图像添加到RSS提要

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在K2.2中将图像添加到RSS提要相关的知识,希望对你有一定的参考价值。

Credit goes to B. Kemler. I'm simply saving this for future reference.
  1. Go to /components/com_k2/models/item.php line 368 and replace the Description section with this:
  2.  
  3. $item->feedimage='';
  4.  
  5. if (JFile::exists(JPATH_SITE.DS.'media'.DS.'k2'.DS.'items'.DS.'cache'.DS.md5("Image".$item->id).'_S.jpg'))
  6. $item->feedimage = '<img align=left style=padding-right:5px; src='.JURI::root().'media/k2/items/cache/'.md5("Image".$item->id).'_S.jpg>';
  7.  
  8. if ($params->get('feedText')=='1'){
  9. $item->description=$item->feedimage.$item->fulltext;
  10. }
  11. else if ($params->get('feedText')=='2'){
  12. $item->description=$item->feedimage.$item->introtext.'<br/>'.$item->fulltext;
  13.  
  14. }
  15. else {
  16. $item->description=$item->feedimage.$item->introtext;
  17. }

以上是关于在K2.2中将图像添加到RSS提要的主要内容,如果未能解决你的问题,请参考以下文章

将 WordPress 特色图片添加到 RSS 提要

SWIFT/iOS:将 XML 数据(RSS 提要)解析为明文,将图像和视频添加到 textview

RSS 提要中的图像

如何在 UITableViewCell 上添加 rss 图片

如何将图像添加到 RSS 2.0 中的项目?

如何从 rss feed windows 10 获取图片文章