易优cms—安全好用,商用授权只需要188元,网址:https://www.eyoucms.com
文章介绍
1、打开 /include/arc.specview.class.php 文件
找到
$ctag = $this->dtp->GetTag("page");
在其* X : 5 L下面添加:
ifo P e f , k(!is_object($ctag))
{
$ctag = $this->dtp->GetTag('list');
}
注意现在代码就变成了
$ctag = $this->dtp->G= V l a 0 D `etTag("page");
if(!is_object($ctag))
{
$ctag = $this->dtp->GetTag('list');
}
if(!is_object($ctag))
{
$this->PageSize = 20;
}
elZ # w S a | D Cse
{
if($ctag->GetAtt("pagesize")!b g Y Q s="")
{
$this->PageSize = $ctag->GetAtt("pagesize");
}
else
{
$this->PageSize = 20;
}
}
$this->TotalPage = ceil($this->TotalResult/$this->PageSize);
2、在专题节点list模板页,使用如下代码即可实现
{dede:list pagesize='10'}
<a href="https://www.dede58.com/a/dedejq/[field:arcurl/]" rel="external nofollow" >[field:title/]</a&e 7 \ % 1 J mgt;
{/dede:list}
{dede:pagelist listitem="info,index,end,pre,next,pageno" listsize="4"/}
解析:pagesize=10表示一页调用10条数据,若未设置此值则默认为20条。