在列表頁(yè)的標(biāo)題上中上頁(yè)數(shù)使列表頁(yè)的標(biāo)題不重復(fù)這樣更利于優(yōu)化。
標(biāo)簽為:{dede:pagelist listsize='0' listitem='pageno' function='html2text(@me)'/}
實(shí)例:
只適用于列表頁(yè),且該欄目?jī)?nèi)容不止一頁(yè)的情況下,可使用版本包括dedecms v5.1至v5.6。v5.7未測(cè)試。測(cè)試過(guò)的朋友可以說(shuō)下管用不。
修改php的方法為:
DedeCMS修改列表頁(yè)標(biāo)題成“列表名-第xx頁(yè)”需要修改include/arc.listview.class.php
靜態(tài)頁(yè)的修改方法
1.刪掉236行 $this->ParseTempletsFirst();
2.在262行$this->ParseDMFields($this->PageNo,1);前添加
$this->Fields['pagexx'] = $this->PageNo;
$this->ParseTempletsFirst();
動(dòng)態(tài)頁(yè)的修改方法
3.在325行if((empty($this->PageNo) || $this->PageNo==1) 前添加
$this->Fields['pagexx'] = $this->PageNo;
list_article.htm模板的修改方法
版權(quán)聲明: 本站資源均來(lái)自互聯(lián)網(wǎng)或會(huì)員發(fā)布,如果侵犯了您的權(quán)益請(qǐng)與我們聯(lián)系,我們將在24小時(shí)內(nèi)刪除!謝謝!
轉(zhuǎn)載請(qǐng)注明: dedecms列表頁(yè)標(biāo)題title后加上頁(yè)數(shù)其標(biāo)題不重復(fù)的