How to automatically update the content of the DreamWeaver site to Sina Weibo?
The content of DEDECMS website is automatically updated to Sina Weibo
Recommended learning: DDEECMS
Sina Weibo uses feed Found an updated article. Just specify the feed address for him and he can be successfully associated.
Now let’s start with a simple modification of Dreamweaver’s template. Since Dreamweaver cannot generate the entire site’s XML file, we must first create a PHP program that generates the entire site’s XML.
1. Create feed.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 . "/feed.htm"); header("Content-type:application/xml"); $pv->Display(); ?>
The above thing to note is to modify the path of the template to ensure that feed.htm can be found in the template and directory
2. Create feed. htm template file
<?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>
It should be noted that don’t forget to change my URL to what you need.
3. Modify the index.htm home page template
Since Sina Weibo can only verify the URL and cannot write the full path, for example, I wrote:. The result indicates that the association failed. The solution is to add the following code
<link rel="alternate" type="application/rss+xml" href="" title="你的标题" />
between
and . Through the above method, you can successfully associate with Sina Weibo.The above is the detailed content of How to automatically update the content of the DreamWeaver site to Sina Weibo. For more information, please follow other related articles on the PHP Chinese website!