相關(guān)文章
欄目分類 classification
DedeCMS首頁(yè)自動(dòng)更新隨機(jī)文章方法
網(wǎng)站首頁(yè)內(nèi)容的更新頻率直接決定了網(wǎng)站的收錄速度和站點(diǎn)權(quán)重,這就需要網(wǎng)站首頁(yè)內(nèi)容隨時(shí)更新,但是我們有時(shí)候不可能隨時(shí)的自己去手動(dòng)更新,這時(shí)候,我們就可以給dedecms設(shè)置一下首頁(yè)自動(dòng)更新,沒(méi)錯(cuò),沒(méi)錯(cuò)就是自動(dòng)更新,全自動(dòng)更新首頁(yè)的文章列表。
設(shè)置自動(dòng)更新首頁(yè)的具體操作方法如下:
第1步、在首頁(yè)模板里面添加隨機(jī)文章調(diào)用標(biāo)簽,在這里給大家解釋一下為什么要添加隨機(jī)文章調(diào)用標(biāo)簽?zāi)兀恳驗(yàn)殡S機(jī)調(diào)用標(biāo)簽會(huì)在每次刷新時(shí)調(diào)用不同的文章內(nèi)容,就相當(dāng)于每次刷新首頁(yè)都有新內(nèi)容展示出來(lái),就算是網(wǎng)站文章沒(méi)有增加也可以。而如果只是普通的文章調(diào)用標(biāo)簽,并且在網(wǎng)站內(nèi)容文章沒(méi)有增加的情況下刷新首頁(yè)是不會(huì)出現(xiàn)新內(nèi)容的。具體調(diào)用代碼如下:
{dede:arclist sort=’rand’ titlelen=48 row=16}
<li><a href="[field:arcurl/]" title="[field:title/]"
target="_blank">[field:title/]</a></li>
{/dede:arclist}
<?php
function sp_input( $text )
{
$text = trim( $text );
$text = htmlspecialchars( $text );
if (!get_magic_quotes_gpc())
return addslashes( $text );
else
return $text;
}
$autotime = 3600;//自動(dòng)更新時(shí)間,單位為秒,這里我設(shè)為一小時(shí),大家可以自行更改。
$fpath = "../data/last_time.inc";//記錄更新時(shí)間文件,如果不能達(dá)到目的,請(qǐng)檢查是否有讀取權(quán)限。
include( $fpath );
if( empty($last_time))
$last_time = 0;
if( sp_input($_GET['renew'])=="now")
$last_time = 0;
if((time()-$last_time)>=$autotime )
{
define('DEDEADMIN', ereg_replace("[/\]{1,}",'/',dirname(__FILE__) ) );
require_once(DEDEADMIN."/../include/common.inc.php");
require_once(DEDEINC."/arc.partview.class.php");
/*
$row = $dsql->GetOne("Select * From dede_homepageset");
$dsql->Close();
$templet=$row['templet'];
$position=$row['position'];
*/
$templet = “tnbjh/index.htm”;//這里是首頁(yè)模板位置,當(dāng)前是dede默認(rèn)首面位置。
$position = "../index.html";
$homeFile = dirname(__FILE__)."/".$position;
$homeFile = str_replace("\", "/", $homeFile );
$homeFile = str_replace( "//", "/", $homeFile );
$pv = new PartView();
$pv ->SetTemplet( $cfg_basedir.$cfg_templets_dir."/".$templet );
$pv -> SaveToHtml( $homeFile );
$pv -> Close();
$file = fopen( $fpath, "w");
fwrite( $file, "<?php ");
fwrite( $file,"$last_time=".time()."; ");
fwrite( $file, '?>' );
fclose( $file );
}
?>
<script src="/plus/autoindex.php" language="javascript"></script>
設(shè)置自動(dòng)更新首頁(yè)的具體操作方法如下:
第1步、在首頁(yè)模板里面添加隨機(jī)文章調(diào)用標(biāo)簽,在這里給大家解釋一下為什么要添加隨機(jī)文章調(diào)用標(biāo)簽?zāi)兀恳驗(yàn)殡S機(jī)調(diào)用標(biāo)簽會(huì)在每次刷新時(shí)調(diào)用不同的文章內(nèi)容,就相當(dāng)于每次刷新首頁(yè)都有新內(nèi)容展示出來(lái),就算是網(wǎng)站文章沒(méi)有增加也可以。而如果只是普通的文章調(diào)用標(biāo)簽,并且在網(wǎng)站內(nèi)容文章沒(méi)有增加的情況下刷新首頁(yè)是不會(huì)出現(xiàn)新內(nèi)容的。具體調(diào)用代碼如下:
{dede:arclist sort=’rand’ titlelen=48 row=16}
<li><a href="[field:arcurl/]" title="[field:title/]"
target="_blank">[field:title/]</a></li>
{/dede:arclist}
面這段列表代碼可以調(diào)用出隨機(jī)文章,并且在每次刷新動(dòng)態(tài)頁(yè)面的時(shí)候都會(huì)變化,但是由于織夢(mèng)是首頁(yè)生成靜態(tài)html的,所以如果不去手動(dòng)生成還是不會(huì)變化,這樣就用到了下面的方法。
第2步、設(shè)置定時(shí)自動(dòng)更新文件
復(fù)制下面代碼,粘貼到一個(gè)新文件中,命名為:autoindex.php,上傳到網(wǎng)站根目錄的plus文件夾中。
<?php
function sp_input( $text )
{
$text = trim( $text );
$text = htmlspecialchars( $text );
if (!get_magic_quotes_gpc())
return addslashes( $text );
else
return $text;
}
$autotime = 3600;//自動(dòng)更新時(shí)間,單位為秒,這里我設(shè)為一小時(shí),大家可以自行更改。
$fpath = "../data/last_time.inc";//記錄更新時(shí)間文件,如果不能達(dá)到目的,請(qǐng)檢查是否有讀取權(quán)限。
include( $fpath );
if( empty($last_time))
$last_time = 0;
if( sp_input($_GET['renew'])=="now")
$last_time = 0;
if((time()-$last_time)>=$autotime )
{
define('DEDEADMIN', ereg_replace("[/\]{1,}",'/',dirname(__FILE__) ) );
require_once(DEDEADMIN."/../include/common.inc.php");
require_once(DEDEINC."/arc.partview.class.php");
/*
$row = $dsql->GetOne("Select * From dede_homepageset");
$dsql->Close();
$templet=$row['templet'];
$position=$row['position'];
*/
$templet = “tnbjh/index.htm”;//這里是首頁(yè)模板位置,當(dāng)前是dede默認(rèn)首面位置。
$position = "../index.html";
$homeFile = dirname(__FILE__)."/".$position;
$homeFile = str_replace("\", "/", $homeFile );
$homeFile = str_replace( "//", "/", $homeFile );
$pv = new PartView();
$pv ->SetTemplet( $cfg_basedir.$cfg_templets_dir."/".$templet );
$pv -> SaveToHtml( $homeFile );
$pv -> Close();
$file = fopen( $fpath, "w");
fwrite( $file, "<?php ");
fwrite( $file,"$last_time=".time()."; ");
fwrite( $file, '?>' );
fclose( $file );
}
?>
然后我們需要在首頁(yè)的模版代碼head標(biāo)簽中引入下面這段代碼,也就是引入這個(gè)php文件:
<script src="/plus/autoindex.php" language="javascript"></script>
完成以上步驟后在后臺(tái)點(diǎn)擊生成-更新首頁(yè)。
這樣就能實(shí)現(xiàn)首頁(yè)內(nèi)容定時(shí)自動(dòng)更新了,一定要看清楚上面的注釋,時(shí)間是以秒為單位的,默認(rèn)3600秒是一小時(shí),大家可以自行更改。
說(shuō)點(diǎn)什么吧
- 全部評(píng)論(0)
還沒(méi)有評(píng)論,快來(lái)?yè)屔嘲l(fā)吧!