真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

在DedeCMS中的文章頁(yè)面的上一篇下一篇鏈接處增加文章摘要的方法

這篇文章將為大家詳細(xì)講解有關(guān)在DedeCMS中的文章頁(yè)面的上一篇下一篇鏈接處增加文章摘要的方法,小編覺(jué)得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。

創(chuàng)新互聯(lián)公司服務(wù)項(xiàng)目包括衡山網(wǎng)站建設(shè)、衡山網(wǎng)站制作、衡山網(wǎng)頁(yè)制作以及衡山網(wǎng)絡(luò)營(yíng)銷策劃等。多年來(lái),我們專注于互聯(lián)網(wǎng)行業(yè),利用自身積累的技術(shù)優(yōu)勢(shì)、行業(yè)經(jīng)驗(yàn)、深度合作伙伴關(guān)系等,向廣大中小型企業(yè)、政府機(jī)構(gòu)等提供互聯(lián)網(wǎng)行業(yè)的解決方案,衡山網(wǎng)站推廣取得了明顯的社會(huì)效益與經(jīng)濟(jì)效益。目前,我們服務(wù)的客戶以成都為中心已經(jīng)輻射到衡山省份的部分城市,未來(lái)相信會(huì)繼續(xù)擴(kuò)大服務(wù)區(qū)域并繼續(xù)獲得客戶的支持與信任!

在DedeCMS中的文章頁(yè)面的上一篇下一篇鏈接處怎么增加文章摘要?

DedeCMS系統(tǒng)默認(rèn)的是在文章的上一篇和下一篇的鏈接只顯示標(biāo)題,但是有時(shí)我們希望顯示其他信息,比如文章的摘要。下面給大家介紹一下方法

推薦學(xué)習(xí):織夢(mèng)cms

DedeCMS系統(tǒng)默認(rèn)的是在文章的上一篇和下一篇的鏈接只顯示標(biāo)題,但是有時(shí)我們希望顯示其他信息,比如文章的摘要。

找到arc.archives.class.php文件,在include目錄下面,然后查找“GetPreNext”這個(gè)函數(shù),將

$query 
= "Select 
arc.id,arc.title,arc.shorttitle,arc.typeid,arc.ismake,arc.senddate,arc.arcrank,arc.money,arc.filename,arc.litpic, 
t.typedir,t.typename,t.namerule,t.namerule2,t.ispart,t.moresite,t.siteurl,t.sitepath 
from `jcode_archives` arc left join jcode_arctype t on arc.typeid=t.id ";

改成:

$query = "Select 
arc.id,arc.title,arc.shorttitle,arc.typeid,arc.ismake,arc.senddate,arc.arcrank,arc.money,arc.filename,arc.litpic, 
arc.description,t.typedir,t.typename,t.namerule,t.namerule2,t.ispart,t.moresite,t.siteurl,t.sitepath 
from `jcode_archives` arc left join jcode_arctype t on arc.typeid=t.id ";

比較一下其實(shí)現(xiàn)在只是多了arc.description,這就是文章的摘要,也稱為文章描述。

需要注意的是這里的jcode_archives和jcode_arctype中的jcode_是我表結(jié)構(gòu)的前綴,你需要將這個(gè)前綴改成你自己的。

現(xiàn)在我們已經(jīng)將文章描述從數(shù)據(jù)庫(kù)里面取出來(lái)了。下一步將描述顯示在頁(yè)面上,顯示連接文字的代碼本來(lái)是這樣的,你可以通過(guò)查找找到,其實(shí)就在上面那段代碼的附近:

if(is_array($preRow))
{
$mlink = 
GetFileUrl($preRow['id'],$preRow['typeid'],$preRow['senddate'],$preRow['title'],$preRow['ismake'],$preRow['arcrank'],
$preRow['namerule'],$preRow['typedir'],$preRow['money'],$preRow['filename'],$preRow['moresite'],$preRow['siteurl'],$preRow['sitepath']);
$this->PreNext['pre'] 
= "上一篇:{$preRow['title']} 
";
$this->PreNext['preimg'] = "{$preRow['title']} 
";
}
else
{
$this->PreNext['pre'] = "上一篇:沒(méi)有了 "; 
$this->PreNext['preimg'] 
="對(duì)不起,沒(méi)有上一圖集了!";
}
if(is_array($nextRow))
{
$mlink = 
GetFileUrl($nextRow['id'],$nextRow['typeid'],$nextRow['senddate'],$nextRow['title'],$nextRow['ismake'],$nextRow['arcrank'],
$nextRow['namerule'],$nextRow['typedir'],$nextRow['money'],$nextRow['filename'],$nextRow['moresite'],$nextRow['siteurl'],$nextRow['sitepath']);
$this->PreNext['next'] 
= "下一篇:{$nextRow['title']} 
";
$this->PreNext['nextimg'] = "{$nextRow['title']} 
";
}
else
{
$this->PreNext['next'] = "下一篇:沒(méi)有了 "; 
$this->PreNext['nextimg'] ="對(duì)不起,沒(méi)有下一圖集了!";
}
}

現(xiàn)在為了顯示出文章描述,在每一個(gè)a標(biāo)簽之后添加一個(gè)div div中包含文章描述:

if(is_array($preRow))
{
$mlink = 
GetFileUrl($preRow['id'],$preRow['typeid'],$preRow['senddate'],$preRow['title'],$preRow['ismake'],$preRow['arcrank'],
$preRow['namerule'],$preRow['typedir'],$preRow['money'],$preRow['filename'],$preRow['moresite'],$preRow['siteurl'],$preRow['sitepath']);
$this->PreNext['pre'] 
= "上一篇:{$preRow['title']} 
{$preRow['description']}
"; $this->PreNext['preimg'] = "{$preRow['title']}
{$preRow['description']}
"; } else { $this->PreNext['pre'] = "上一篇:沒(méi)有了 "; $this->PreNext['preimg'] ="對(duì)不起,沒(méi)有上一圖集了!"; } if(is_array($nextRow)) { $mlink = GetFileUrl($nextRow['id'],$nextRow['typeid'],$nextRow['senddate'],$nextRow['title'],$nextRow['ismake'],$nextRow['arcrank'], $nextRow['namerule'],$nextRow['typedir'],$nextRow['money'],$nextRow['filename'],$nextRow['moresite'],$nextRow['siteurl'],$nextRow['sitepath']); $this->PreNext['next'] = "下一篇:{$nextRow['title']}
{$preRow['description']}
"; $this->PreNext['nextimg'] = "{$nextRow['title']}
{$preRow['description']}
"; } else { $this->PreNext['next'] = "下一篇:沒(méi)有了 "; $this->PreNext['nextimg'] ="對(duì)不起,沒(méi)有下一圖集了!"; } }

這樣做的話能顯示文章摘要,但是格式可能會(huì)很亂,你可以根據(jù)需要增加樣式。

關(guān)于在DedeCMS中的文章頁(yè)面的上一篇下一篇鏈接處增加文章摘要的方法就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到。


網(wǎng)站名稱:在DedeCMS中的文章頁(yè)面的上一篇下一篇鏈接處增加文章摘要的方法
網(wǎng)頁(yè)地址:http://weahome.cn/article/jsepjo.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部