织梦(Dedecms)列表页/内容页显示分页页码过多,缩短修改方法

  织梦Dedecms列表页/内容页显示分页页码过多,缩短修改方法

  打开include/arc_archives.class.php文件

  找到GetPagebreakDM //修改的是列表页

  往下查找for($i=1;$i<=$totalPage;$i++)”,在上面插入以下代码:   $total_list=11; //显示7个,3*2+1=7   if($nowPage >= $total_list) {

  $i = $nowPage-3; //前后6个,(7-1)/ 2=3

  $total_list = $nowPage+3; //前后3个,(7-1)/ 2=3

  if($total_list >= $totalPage)

  $total_list = $totalPage;

  }else{

  $i=1;

  if($total_list >= $totalPage)

  $total_list = $totalPage;

  }

  再将for($i=1;$i<=$totalPage;$i++) 修改成for($i;$i<=$total_list;$i++)   找到GetPagebreak //修改的是内容页,修改方法同上 。

☉免责声明:本站所有模板均来自用户分享和网络收集,仅供学习与参考,请勿用于商业用途,如果损害了您的权利,请联系网站客服,我们核实后会立即删除。
☉本站提供的源码、模板、软件工具等其他资源,都不包含技术服务,请大家谅解!
pbootcms模板网 » 织梦(Dedecms)列表页/内容页显示分页页码过多,缩短修改方法

Pbootcms模板网 提供优质的模板集合

立即查看 了解详情