首页 > CMS > 织梦DEDE > 正文

织梦dede全站RSS订阅静态输出的办法

2024-07-12 08:50:14
字体:
来源:转载
供稿:网友
这篇文章主要为大家详细介绍了织梦dede全站RSS订阅静态输出的办法,具有一定的参考价值,感兴趣的小伙伴们可以参考一下,有需要的朋友可以收藏方便以后借鉴。

使用DEDE的单页文档功能,将RSS弄成静态输出,一切为了蜘蛛!

实现DedeCMS Rss全站静态输出的方法

一、在CMS根目录下,新增rss.php文件,文件代码如下:

<?php    require_once (dirname(__FILE__) . "/include/common.inc.php");    require_once (DEDEINC."/arc.partview.class.php");    $pv = new PartView();    $pv->SetTemplet($cfg_basedir . $cfg_templets_dir . "/default/rss.htm");    header("Content-type:application/xml");    $pv->Display();    ?>

二、在默认模板目录(/templetes/default)中,新增rss.html模板文件,文件代码如下:

<?xml version="1.0" encoding="{dede:global.cfg_soft_lang /}" ?>      <rss version="2.0">      <channel>      <title>RSS订阅-{dede:global.cfg_webname/}</title>      <link>{dede:global.cfg_basehost/}</link>      <description>{dede:global.cfg_description/}</description>      <language>zh-cn</language>      <generator>{dede:global.cfg_webname/}</generator>      <webmaster>{dede:global.cfg_adminemail/}</webmaster>      {dede:arclist row='100' col='1' titlelen='200' orderby='pubdate'}      <item>      <link>/[field:arcurl/]</link>      <title><![CDATA[[field:title function='html2text(@me)'/]]]></title>      <author>[field:writer/]</author>      <category>[field:typename/]</category>      <pubDate>[field:pubdate function='strftime("%a, %d %b %Y %H:%M:%S +0800",@me)'/]</pubDate>      <guid>/[field:arcurl/]</guid>      <description><![CDATA[[field:description function='html2text(@me)'/]]]></description>       </item>      {/dede:arclist}    </channel>    </rss>

三、在后台——核心——频道模型——单页文档管理,增加一个单页面,“模板文件名”项中输入第2步中涉及的模板文件rss.htm,而“文件名”中输入未来Rss订阅地址,这里我就直接生成在CMS根目录下了。

四、更新一下缓存,并更新刚刚新增的单页面,即可看到全站性的RSS输出,以后很方便的就可以用各种RSS软件去登录Submit rss地址了。

因此,用单页发布产品信息会很普遍,可惜的是上面谈及的全站RSS静态输出的方法是无法提取单页的,所以我们还需要对rss.html的模板代码进行修改:

<?xml version="1.0" encoding="{dede:global.cfg_soft_lang /}" ?>      <rss version="2.0">      <channel>      <title>RSS订阅-{dede:global.cfg_webname/}</title>      <link>{dede:global.cfg_basehost/}</link>      <description>{dede:global.cfg_description/}</description>      <language>zh-cn</language>      <generator>{dede:global.cfg_webname/}</generator>      <webmaster>{dede:global.cfg_adminemail/}</webmaster>      {dede:arclist row='100' col='1' titlelen='200' orderby='pubdate'}      <item>      <link>http://www.wlxs.com.cn[field:arcurl/]</link>      <title><![CDATA[[field:title function='html2text(@me)'/]]]></title>      <author>[field:writer/]</author>      <category>[field:typename/]</category>      <pubDate>[field:pubdate function='strftime("%a, %d %b %Y %H:%M:%S +0800",@me)'/]</pubDate>      <guid>http://www.***.com[field:arcurl/]</guid>      <description><![CDATA[[field:description function='html2text(@me)'/]]]></description>       </item>      {/dede:arclist}    /********调用单页的代码********/    {dede:sql sql='Select * from dede_sgpage order by uptime asc limit 48'}      <item>      <link>http://www.***.com/[field:filename/]</link>      <title><![CDATA[[field:title function='html2text(@me)'/]]]></title>      <author></author>      <category></category>      <pubDate>[field:uptime function='strftime("%a, %d %b %Y %H:%M:%S +0800",@me)'/]</pubDate>      <guid>http://www.***.com/[field:filename/]</guid>      <description><![CDATA[[field:body function='html2text(@me)'/]]]></description>      </item>      {/dede:sql}    /********调用单页的代码********/    </channel>      </rss>

完成。

以上就是织梦dede全站RSS订阅静态输出的办法的全部内容,希望对大家的学习和解决疑问有所帮助,也希望大家多多支持武林网。
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表