Warning: Undefined array key "night" in /www/wwwroot/dhaomu.com/wp-content/themes/b2/header.php on line 18

织梦列表分页添加省略号支持动态静态

dedecms教程:织梦教程dedecms列表分页添加省略号(支持动态静态)!

打开 \include\arc.listview.class.php 找到

$total_list = $list_len * 2 + 1;

这里有2处,都需要在它的下面加入

 //省略号
 
        if ($totalpage > $total_list) { 
 
            $half = floor(($total_list - 4) / 2); 
 
            $half_start = $this->PageNo - $half + 1; 
 
            if ($total_list % 2 !== 0) --$half_start; 
 
            $half_end = $this->PageNo + $half; 
 
        } 
 
        if (($totalpage - $this->PageNo) < ($total_list - 3)) { 
 
            $half_start = $totalpage - $total_list + 3; 
 
            unset($half_end);
 
        } 
 
        if ($this->PageNo <= ($total_list - 3)) { 
 
            $half_end = $total_list - 2; 
 
            unset($half_start); 
 
        }

继续找到

for($j;$j<=$total_list;$j++)

这里也有2处,都需要改成

for($j=1;$j<=$totalpage;$j++)

最后找到

if($j==$this->PageNo)

这里也有2处,在它上面加入

 //省略号
 
            if (isset($half_start) && $j < $half_start && $j > 1) {
 
                if ($j == 2) $listdd .= "<li style='border:0;'><a href='javascript:void(0)'>...</a></li>";
 
                continue;
 
            }
 
            if (isset($half_end) && $j > $half_end && $j < $totalpage) { 
 
                if ($j == ($half_end + 1)) $listdd .= "<li style='border:0;'><a href='javascript:void(0)'>...</a></li>";
 
                continue; 
 
            }

完成

温馨提示:
1.本站大部分内容均收集于网络!若内容若侵犯到您的权益,请发送邮件至:duhaomu@163.com,我们将第一时间处理!
2.资源所需价格并非资源售卖价格,是收集、整理、编辑详情以及本站运营的适当补贴,并且本站不提供任何免费技术支持。
3.所有资源仅限于参考和学习,版权归原作者所有,更多请阅读网站声明

给TA赞赏
共{{data.count}}人
人已赞赏
编程技巧

ECShop首页调用最新评论增加显示评论时间

2022-2-9 0:00:00

编程技巧

EcShop修改admin目录为任意名

2022-2-18 0:00:00

0 条回复 A文章作者 M管理员

Warning: Trying to access array offset on value of type null in /www/wwwroot/dhaomu.com/wp-content/themes/b2/functions.php on line 3914

Warning: Trying to access array offset on value of type null in /www/wwwroot/dhaomu.com/wp-content/themes/b2/functions.php on line 3914
----《》
    暂无讨论,说说你的看法吧
个人中心
购物车
优惠劵
今日签到
有新私信 私信列表
搜索