首先找到 “include” 文件夹下的 arc.searchview.class.php 文件
?
在140 到145之间的这段代码
?
if($this->PageSize=="") { $this->PageSize = 20; }
?
替换成
$ctag = $this->dtp->GetTag("page"); if(!is_object($ctag)) { $ctag = $this->dtp->GetTag("list"); } if(!is_object($ctag)){ $this->PageSize = 20; }else{ if($ctag->GetAtt("pagesize")!="") { $this->PageSize = $ctag->GetAtt("pagesize"); }else{ $this->PageSize = 20; } }
?
在 search.htm 写上
<ul> {dede:list} <li><a target="_blank">[field:title/]</a></li> {/dede:list} </ul> {dede:pagelist listsize=‘4‘/}
?
?
原文:http://onestopweb.iteye.com/blog/2248680