名站网址导航为大驾家提供DedeCMS站点程序站点教程相关的知识,比如织梦程序安装教程,织梦程序系统故障等教程。织梦程序文章站点列表页和搜索结果单独输出当前页码、总页码、文档总数,不是用dede:sql的方式。
织梦程序栏目站点列表页实现教程
打开 /include/arc.listview.class.php 找到 (大约在673行)
else if($PageNo!=1 && $ctag->GetName()=='field' && $ctag->GetAtt('display')!='')
在它上面加入
else if($ctag->GetName()=="pageno") { $this->dtp->Assign($tagid,$this->PageNo); } else if($ctag->GetName()=="totalpage") { $this->dtp->Assign($tagid,ceil($this->TotalResult/$this->PageSize)); } else if($ctag->GetName()=="totalresult") { $this->dtp->Assign($tagid,$this->TotalResult); } |
如图
织梦程序搜索结果页实现教程
else if($tagname=="field")
在它上面加入
else if($ctag->GetName()=="pageno") { $this->dtp->Assign($tagid,$this->PageNo); } else if($ctag->GetName()=="totalpage") { $this->dtp->Assign($tagid,ceil($this->TotalResult/$this->PageSize)); } else if($ctag->GetName()=="totalresult") { $this->dtp->Assign($tagid,$this->TotalResult); } |
如图
织梦程序栏目站点列表模板和搜索结果页模板具体调用标签统一写法
当前第{dede:pageno/}页 共有{dede:totalpage/}页 共有{dede:totalresult/}条数据
关于DedeCMS站点程序站点教程相关的知识,就说到这里了希望能帮助朋友们。织梦程序arclist标签idlist按指定id顺序输出文章