您现在的位置是:首页 > 教程 > dedecms教程dedecms教程

织梦dedecms列表页显示条数不同怎么办

关戚栾2023-09-15 23:55:13dedecms教程已有人查阅

导读首先找到网站根目录/include/ arc.listview.class.php这里以列表首页显示6条,其他列表页显示9条为例,即模板页标签{dede:

首先找到网站根目录/include/ arc.listview.class.php
这里以列表首页显示6条,其他列表页显示9条为例,即
模板页标签{dede:list pagesize="6"}{/dede:list}
$this->PageSize = 6
1.找到函数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; 
 } 
2.找到
$totalpage = ceil($this->TotalResult/$this->PageSize);//总共有两处分别为静态和动态 
改为
$totalpage = ceil(1+($this->TotalResult-$this->PageSize)/($this->PageSize+3));

本文标签:

很赞哦! ()

留言与评论 (共有 条评论)
验证码:

本栏推荐

相关标签