首先找到網(wǎng)站根目錄/include/ arc.listview.class.PHP
這里以列表首頁顯示6條,其他列表頁顯示9條為例,即
模板頁標(biāo)簽{dede:list pagesize="6"}{/dede:list}
$this->PageSize = 6
1.找到函數(shù)ParseDMFields
在里面找
if($ctag->GetName()=="list")
{
$limitstart = ($this->PageNo-1) * $this->PageSize;
$row = $this->PageSize;
修改為
if($ctag->GetName()=="list")
{
$limitstart = ($this->PageNo-1) * $this->PageSize;
if($this->PageNo>2)
{
$limitstart = ($this->PageNo-1) * ($this->PageSize+3)-3;
}
$row = $this->PageSize;
if($this->PageNo>1)
{
$row = $this->PageSize+3;
}
$totalpage = ceil($this->TotalResult/$this->PageSize);//總共有兩處分別為靜態(tài)和動態(tài)改為
$totalpage = ceil(1+($this->TotalResult-$this->PageSize)/($this->PageSize+3));
版權(quán)聲明: 本站資源均來自互聯(lián)網(wǎng)或會員發(fā)布,如果侵犯了您的權(quán)益請與我們聯(lián)系,我們將在24小時內(nèi)刪除!謝謝!
轉(zhuǎn)載請注明: dedecms中列表頁顯示條數(shù)不同的解決方法