相關文章(zhāng)
欄目分(fēn)類 classification
DedeCMS首頁自動更新随機文章(zhāng)方法
網站首頁内容的(de)更新頻(pín)率直接決定了(le)網站的(de)收錄速度和(hé)站點權重,這(zhè)就需要網站首頁内容随時(shí)更新,但是我們有時(shí)候不可(kě)能随時(shí)的(de)自己去手動更新,這(zhè)時(shí)候,我們就可(kě)以給dedecms設置一下(xià)首頁自動更新,沒錯,沒錯就是自動更新,全自動更新首頁的(de)文章(zhāng)列表。
設置自動更新首頁的(de)具體操作方法如下(xià):
第1步、在首頁模闆裏面添加随機文章(zhāng)調用(yòng)标簽,在這(zhè)裏給大(dà)家解釋一下(xià)爲什(shén)麽要添加随機文章(zhāng)調用(yòng)标簽呢(ne)?因爲随機調用(yòng)标簽會在每次刷新時(shí)調用(yòng)不同的(de)文章(zhāng)内容,就相當于每次刷新首頁都有新内容展示出來(lái),就算(suàn)是網站文章(zhāng)沒有增加也(yě)可(kě)以。而如果隻是普通(tōng)的(de)文章(zhāng)調用(yòng)标簽,并且在網站内容文章(zhāng)沒有增加的(de)情況下(xià)刷新首頁是不會出現新内容的(de)。具體調用(yòng)代碼如下(xià):
{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;//自動更新時(shí)間,單位爲秒,這(zhè)裏我設爲一小時(shí),大(dà)家可(kě)以自行更改。
$fpath = "../data/last_time.inc";//記錄更新時(shí)間文件,如果不能達到目的(de),請檢查是否有讀取權限。
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."count-yes.html");
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”;//這(zhè)裏是首頁模闆位置,當前是dede默認首面位置。
$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>
設置自動更新首頁的(de)具體操作方法如下(xià):
第1步、在首頁模闆裏面添加随機文章(zhāng)調用(yòng)标簽,在這(zhè)裏給大(dà)家解釋一下(xià)爲什(shén)麽要添加随機文章(zhāng)調用(yòng)标簽呢(ne)?因爲随機調用(yòng)标簽會在每次刷新時(shí)調用(yòng)不同的(de)文章(zhāng)内容,就相當于每次刷新首頁都有新内容展示出來(lái),就算(suàn)是網站文章(zhāng)沒有增加也(yě)可(kě)以。而如果隻是普通(tōng)的(de)文章(zhāng)調用(yòng)标簽,并且在網站内容文章(zhāng)沒有增加的(de)情況下(xià)刷新首頁是不會出現新内容的(de)。具體調用(yòng)代碼如下(xià):
{dede:arclist sort=’rand’ titlelen=48 row=16}
<li><a href="[field:arcurl/]" title="[field:title/]"
target="_blank">[field:title/]</a></li>
{/dede:arclist}
面這(zhè)段列表代碼可(kě)以調用(yòng)出随機文章(zhāng),并且在每次刷新動态頁面的(de)時(shí)候都會變化(huà),但是由于織夢是首頁生成靜态html的(de),所以如果不去手動生成還(hái)是不會變化(huà),這(zhè)樣就用(yòng)到了(le)下(xià)面的(de)方法。
第2步、設置定時(shí)自動更新文件
複制下(xià)面代碼,粘貼到一個(gè)新文件中,命名爲:autoindex.php,上傳到網站根目錄的(de)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;//自動更新時(shí)間,單位爲秒,這(zhè)裏我設爲一小時(shí),大(dà)家可(kě)以自行更改。
$fpath = "../data/last_time.inc";//記錄更新時(shí)間文件,如果不能達到目的(de),請檢查是否有讀取權限。
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."count-yes.html");
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”;//這(zhè)裏是首頁模闆位置,當前是dede默認首面位置。
$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 );
}
?>
然後我們需要在首頁的(de)模版代碼head标簽中引入下(xià)面這(zhè)段代碼,也(yě)就是引入這(zhè)個(gè)php文件:
<script src="/plus/autoindex.php" language="javascript"></script>
完成以上步驟後在後台點擊生成-更新首頁。
這(zhè)樣就能實現首頁内容定時(shí)自動更新了(le),一定要看清楚上面的(de)注釋,時(shí)間是以秒爲單位的(de),默認3600秒是一小時(shí),大(dà)家可(kě)以自行更改。
上一篇:織夢常用(yòng)标簽大(dà)全,織夢仿站标簽 [返回列表]
下(xià)一篇:教你如何實現DedeCMS的(de)站内搜索功能
說點什(shén)麽吧
- 全部評論(0)
還(hái)沒有評論,快(kuài)來(lái)搶沙發吧!