织梦dedecms使用RSS订阅整站的实现代码

1,添加一个RSS模板,文件名为:rss_qq.htm,将RSS模板文件保存到/templets/plus/目录下

 

<span style="font-family: 'courier new', courier; font-size: 13px;"><rss xmlns:content="" xmlns:wfw="" xmlns:dc="" xmlns:atom="" xmlns:sy="" xmlns:slash="" version="2.0"> <channel> <title>{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='50' orderby='pubdate' titlelen='200'} <item> <title><![CDATA[[field:title/]]]></title> <link>[field:arcurl/]</link> <category>[field:typename/]</category> <pubdate>[field:pubdate function='strftime("%a,%d%b%Y%H:%M:%S +0800",@me)'/]</pubdate> <description><![CDATA[[field:array runphp='yes']@me = (strpos(@me['litpic'],'defaultpic') ? "": "<a [email=href='%7B@me[%22arcurl%22]%7D']href='{@me["arcurl"]}'[/email] target='_blank'><img [email=src='%7B@me[%22litpic%22]%7D']src='{@me["litpic"]}'[/email] border='0' /><br />"); [/field:array][field:description function='html2text(@me)'/] ... ]]></description> </item> {/dede:arclist} </channel> </rss> </span>  

 

2,在根目录中添加rss.php文件

 

 

<span style="font-family: 'courier new', courier; font-size: 13px;"><?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 . "/plus/rss_qq.htm"); header("Content-type:application/xml"); $pv->Display(); ?> </span>  

 

3,在首页index.htm模板的头部标签中添加属性

 

<span style="font-family: 'courier new', courier; font-size: 13px;"><link rel="alternate" type="application/rss+xml" title="{dede:field.title/}" href=http://www.dede58.com/"http:/www.genban.org/rss.php"/> </span>  

完成以上三步,即可实现DEDE的整站订阅了,可以访问你根目录的rss.php文件看到效果,在使用QQlist时,只需要把 rss.php的路径(就是

“")填进去,就可以实现站的订阅了。

 

通过浏览器上的RSS源识别按钮即可识别。或在网页其它地方添加A标签形式的订阅链接。 默认情况下,最多调用50个最新的文章,不需要每次生成,只要有新文章,RSS就会更新。

以上就是本节dedecms教程的全部内容,希望可以帮助到大家。

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/0a29feb04fc5e3d85142f67391a33724.html