织梦站点内容自动更新到新浪微博
来源:本站原创|时间:2021-08-05|栏目:dedecms|点击: 次
新浪微博是利用feed找到更新文章的。只要给他指定feed地址就可以成功关联啦。
现在开始动手简单修改一下织梦的模板,由于织梦不能生成全站的xml文件,所以要先建立生成全站XML的php程序。
1,建立feed.php
<?xml version="1.0" encoding="gb2312" ?>
<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=’60′ col=’1′ titlelen=’100′ 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>
需要注意的是,别忘了把我的网址改成你自己需要的。
3,修改index.htm主页模板
由于新浪微博只能验证网址,不能写完整路径,比如我写的是:。结果提示关联失败,解决的办法是,在<head>和</head>中间加入下面的代码
<link rel="alternate" type="application/rss+xml" href="" title="你的标题" />
通过以上方法就可以成功关联新浪微博了。
上一篇:织梦dede:tag标签添加自增autoindex方法
栏 目:dedecms
下一篇:织梦搜索页调用arclist和channelartlist标签的教程
本文标题:织梦站点内容自动更新到新浪微博
本文地址:https://www.xiuzhanwang.com/a1/dedecms/14132.html
您可能感兴趣的文章
- 08-05Dedecms文件目录结构解说(能知道织梦每个文件有什么用)
- 08-05织梦DedeCMS获取当前栏目文章数量
- 08-05织梦模板如何添加和调用自定义字段的方法
- 08-05织梦DedeCMS调用显示discuz里面主题的方法
- 08-05限制织梦会员每天投稿数量方法
- 08-05常用的织梦dedecms安全设置集合整理
- 08-05织梦教程:后台编辑器添加中文字体方法
- 08-05织梦修改文章排序到第一位如何解决?
- 08-05dede副栏目调用支持arclist标签
- 08-05织梦教程:手把手教你让dedecms禁止发布重复文章