dedecms列表页上一页下一页翻页单独调用
发布:smiling 来源: PHP粉丝网 添加日期:2013-11-15 20:20:22 浏览: 评论:0
我用织梦dedecms实现列表页上一页下一页翻页单独调用的方法
在列表页单独调用上一页和下一页,以及首页,简单搞了一下,仅作上下翻页,主页类似,可自行添加
在模板中以
- {dede:pagelist listitem="up"/}
- {dede:pagelist listitem="down"/}
来调用、
修改办法如下
include\arc.listview.class.php
找到:
- /获得上一页和主页的链接
- if($this->PageNo != 1)
- {
- $prepage.="<</b>li>上一页\r\n";
- $indexpage="<</b>li>首页\r\n";
- $uppage.="<</b>a href='".str_replace("{page}",$prepagenum,$tnamerule)."'>上一页\r\n";
- }
- else
- {
- $indexpage="<</b>li>首页\r\n";
- $uppage.="<</b>a>没有了<</b>/a>\r\n";
- }
- //下一页,未页的链接
- if($this->PageNo!=$totalpage && $totalpage>1)
- {
- $nextpage.="<</b>li><</b>a href='".str_replace("{page}",$nextpagenum,$tnamerule)."'>下一页\r\n";
- $endpage="<</b>li><</b>a href='".str_replace("{page}",$totalpage,$tnamerule)."'>末页\r\n";
- $downpage.="<</b>a href='".str_replace("{page}",$nextpagenum,$tnamerule)."'>下一页\r\n";
- }
- else
- {
- $endpage="<</b>li>末页\r\n";
- $downpage.="<</b>a>没有了\r\n";
- }
然后:
- $plist = '';
- if(preg_match('/up/i', $listitem)) $plist .= $uppage;
- if(preg_match('/down/i', $listitem)) $plist .= $downpage;
- if(preg_match('/index/i', $listitem)) $plist .= $indexpage;
- if(preg_match('/pre/i', $listitem)) $plist .= $prepage;
- if(preg_match('/pageno/i', $listitem)) $plist .= $listdd;
- if(preg_match('/next/i', $listitem)) $plist .= $nextpage;
- if(preg_match('/end/i', $listitem)) $plist .= $endpage;
- if(preg_match('/option/i', $listitem)) $plist .= $optionlist;
- if(preg_match('/info/i', $listitem)) $plist .= $maininfo;
Tags: dedecms 列表 上一页
相关文章
- ·dedecms漏洞防护(2013-11-15)
- ·DedeCMS Error: (PHP 5.3 and above) Please set request_or (2013-11-15)
- ·dedecms文章内容页中的收藏功能收藏的文章路径错误问题解决(2013-11-15)
- ·给织梦DedeCMS文章标题增加自动加长尾关键词的方法(2013-11-15)
- ·dedecms php.ini register_globals must is Off(2013-11-28)
- ·dedecms 问答系统如何取消积分与用户登陆验证(2013-11-28)
- ·dedecms上传图片文件时提示 Upload filetype not allow(2013-12-04)
- ·DedeCMS图集中缩略图不能显示的解决方法(2014-01-09)
- ·安装dedecms:Call to undefined function get_magic_quotes_gpc()(2014-01-09)
- ·Dedecms怎么在首页调用最新评论(2014-01-09)
- ·dedecms自定义模型之独立模型在首页、列表页、内容调用内容(2014-03-11)
- ·织梦DedeCMS子目录移动到根目录的方法(2014-03-11)
- ·DEDECMS织梦短标题标签调用与字数修改方法(2014-03-11)
- ·织梦DedeCMS列表摘要 description 长度控制方法(2014-03-11)
- ·dedecms5.6,5.7去掉系统默认的友情链接链(2014-03-11)
- ·dedecms首页导航菜单二级栏目调用标签(2014-03-11)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)