为织梦dedecms制作全文RSS订阅源

织梦CMS默认情况下,RSS订阅源是根据分类区分不同的RSS订阅的。如果用户想订阅整个网站的RSS是个麻烦事,下面给出解决办法:

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

<?xml version=”1.0″ encoding=”{dede:global.cfg_soft_lang /}” ?>

<rss 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>

2、在根目录中添加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 . “/plus/rss_index.htm”);

header(“Content-type:application/xml”);

$pv->Display();

?>

3、在首页index.htm模板的头部

<link rel=”alternate” type=”application/rss+xml” title=”{dede:field.title/}” href=”http://www.dedecms.com/rss.php“/>

时间慢慢的流淌,人生有风雨阳光,

为织梦dedecms制作全文RSS订阅源

相关文章:

你感兴趣的文章:

标签云: