新浪微博是利用feed找到更新文章的。只要给他指定feed地址就可以成功关联啦。
现在开始动手简单修改一下织梦的模板,由于织梦不能生成全站的xml文h k q % c L D )件,Z # y y _ J所以要先建立生成全站XML的phpC | n n y程序。
1,建立feed.php
< e { Z G # {;?php require_once (dirname(__FILE__) . "/include/common.inJ G M 0c.php"); require_once DEDEINC."/arc.partview+ O Q 0 M 6.class.php"; $pv = new PartView(); $2 g v R J = ]pv->SetTemplet($cfg_basedir . $cfg_templets_dir . "/feed.htm"); header("Content-tyb N Q f J } = | vpe:application/xml"); $pv->k @ r b y o T;Display(); ?: f = j y z>
以上要注意的是修改模板的路径,确保在模板跟目录能够找到feed.htm
2,建立feed.htm模板文件m j f ) C . U
<?xml version="1.0" encoding="gb2312" ?> <rss version="2.0"+ 7 A R k K J T )> <+ I P $;channel> <tr m % a . :itle>{dede:global.cfg_webname/}</title> <link>{dede:g! \ @ X L g v V /lobal.cfg_basehost/}</link> <descrip\ # ! R 3 Ution>H { S Z : ={dede:global.cfg_description/}</description> <language>zh-cn</language> <genf o o U ? werator>{dede:global.cfg_webname/}<9 { y R 6;/generator> <webmasG H o 3ter>{dede:global.cfg_adminemaile f + d i : 1 E !/}</webmaster> {dede:arclist row=’60′ col=’1′ ti. \ \tlelen=’100′ orderby=’pubdate’} <item> <link>[field:arcurl/]</link> <c . D v 5 \;title><# Y B e P ` =;![CDATA[[field:title function='html2text(@me)'/]]]>5 f o V;</title> <author>[field:writer/]</author> <category>[field:typename/]</category> <pubDate>[field:pubdate function='strftime("%a, %d %b %Y %H:%M:%S +0800",@me)'/]</pubDate> <guim I f * a Y W *d>[field:arcurl/]</guid> <description><![CDATA[[field:descriptioc n { _ o \ D H 7n function='html2text(@W u / ! ] Z v ~ #me)'/] … ]]></description> <s m x o J F;/item>P 3 9 z 8 _ r 8; {/dede:arclist} </channel> </rss>
需要注意的是,别忘了把我的网址改成你自己需要的。
3,修改index.htm主v R f 3 q W页模板
由于新浪微博只能验证网址,不能写完整路径,比如我写的是:。结R ) S果提示关联失败,解决的办法是,在<head>和</head>中间加入下面的代码
<link rel="alternate" type="application/rssp , ^ # m z O #+xml" href="" rel="external nofollow" titleY - C f c W S Z="你的标题" /&g5 n p it;
通过以上方法就可以成功关联新浪微博了。