名站网址导航为大驾家提供DedeCMS站点程序站点教程相关的知识,比如织梦程序安装教程,织梦程序系统故障等教程。织梦程序DedeCMS站点程序的默认情况下,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 href='{@me["arcurl"]}' target='_blank'><img src='{@me["litpic"]}' 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.织梦程序58www.mzdh.net.com/rss.php“/>
这样更改之后重新生成就可以了,在第三步中更改成自己的网址就可以了。
关于DedeCMS站点程序站点教程相关的知识,就说到这里了希望能帮助朋友们。织梦程序CMS站点列表页缩略图大小控制的相关具体操作方法