DEDECMS默认专题列表不管在模板里怎么修改调用数量都还是20条。今天为大家带来如何突破这个限制。
打开文件:include/arc.specview.class.php
找到代码:
if(!is_object($ctag))
{
$this->PageSize = 20;
}
else
{
if($ctag->GetAtt("pagesize")!="")
{
$this->PageSize = $ctag->GetAtt("pagesize");
}
else
{
$this->PageSize = 20;
}
}
把里面的两个20修改成你想要的数量。
比如我修改成:
if(!is_object($ctag))
{
$this->PageSize = 50;
}
else
{
if($ctag->GetAtt("pagesize")!="")
{
$this->PageSize = $ctag->GetAtt("pagesize");
}
else
{
$this->PageSize = 50;
}
}
我这段代码是显示50条专题数量,大功告成!演示地址:https://www.nuegame.com/zt/index.html
我的专题目前只有21条。