织梦cms/dedecms tag(标签)列表首页有前一页问题的解决方法
更改
include目录下的arc.taglist.class.php文件中的代码
位置大概在391行:
//获得上一页和下一页的链接
if($this->PageNo !=1)
把它改成:
if($this->PageNo >1)
include目录下的arc.taglist.class.php文件中的代码
位置大概在391行:
//获得上一页和下一页的链接
if($this->PageNo !=1)
把它改成:
if($this->PageNo >1)