导读:织梦文章织梦文章首先找到网站根目录/include/ arc.listview.class.php 这里以列表首页显示6条,其他列表页显示9条为例,即 模板页标签{dede:ldede后台模板dede58模板。
首先找到网站根目录/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);//总共有两处分别为静态和动态
|
dede5.7模板
改为
$totalpage = ceil(1+($this->TotalResult-$this->PageSize)/($this->PageSize+3));
|
dede模板免费
相关dede后台模板dede58模板。
关键词标签: 织梦 解决方法 条数
声明: 本文由我的SEOUC技术文章主页发布于:2023-07-17 ,文章织梦dedecms中列表页显示条数不同的解决方法,织梦主要讲述解决方法,条数,织梦网站建设源码以及服务器配置搭建相关技术文章。转载请保留链接: https://www.seouc.com/article/web_28467.html