Home > CMS Tutorial > DEDECMS > body text

How to automatically update the content of the DreamWeaver site to Sina Weibo

藏色散人
Release: 2020-01-08 09:33:03
Original
2743 people have browsed it

How to automatically update the content of the DreamWeaver site to Sina Weibo

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();   
?>
Copy after login

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=&#39;html2text(@me)&#39;/]]]></title>   
<author>[field:writer/]</author>   
<category>[field:typename/]</category>   
<pubDate>[field:pubdate function=&#39;strftime("%a, %d %b %Y %H:%M:%S +0800",@me)&#39;/]</pubDate>   
<guid>[field:arcurl/]</guid>   
<description><![CDATA[[field:description function=&#39;html2text(@me)&#39;/] … ]]></description>   
</item>   
{/dede:arclist}   
</channel>   
</rss>
Copy after login

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="你的标题" />
Copy after login

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!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template