欢迎来到入门教程网!

dedecms

当前位置:主页 > CMS教程 > dedecms >

织梦DedeCMS 5.7图集点击图片进入下一篇的修改方法

来源:本站原创|时间:2021-08-05|栏目:dedecms|点击:

织梦DedeCMS图集点击到最后一页会提示“没有了哦”,这样对用户体验不好,我们可以实现点击最后一页的时候进入下一篇图集,很实用功能。
 
修改方法如下:
 
修改 include/arc.archives.class.php 文件
 
1、查找“解析模板,对内容里的变动进行赋值”在这段话上面添加以下代码 :
 
function ClickPicNext($ismake=1,$aid,&$body)
{
global $cfg_rewrite;
if($this->NowPage!=$this->TotalPage)
{
$lPage=$this->NowPage+1;
if($ismake=1)
{
$body=preg_replace("/& lt;(img|IMG)(.*)(src|SRC)=[\"|'| ]{0,}((.*)>)/isU","点击图片,进入下一页<br /><a href='".$this->NameFirst."_".$lPage.".".$this->ShortName."'>"."\${0}"."</a>",$body);
}
else
{
$PageList="<a href='view.php?aid=$aid&pageno=$lPage'>"."\${0}"."</a>";
if($cfg_rewrite == 'Y')
{
$PageList = str_replace(".php?aid=","-",$PageList);
$PageList = preg_replace("/&pageno=(\d+)/i",'-\\1.html',$PageList);
}
$body=preg_replace("/<(img|IMG)(.*)(src|SRC)=[\"|'| ]{0,}((.*)>)/isU",$PageList,$body);
}
}
else
{
$body=preg_replace("/<(img|IMG)(.*)(src|SRC)=[\"|'| ]{0,}((.*)>)/isU",$this->GetPreNext('imgnext'),$body);
}
return $body;
}
 
2,查找
 
$this->Fields[$this->SplitPageField] = $this->SplitFields[$pageNo - 1];
 
在其下面添加
 
if($ClickPicNext){
            $this->Fields[$this->SplitPageField]=$this->Fields[$this->SplitPageField];
            }else{
            $this->Fields[$this->SplitPageField]=$this->ClickPicNext($ismake,$this->Fields['id'],$this->Fields[$this->SplitPageField]);
            }
 
3,查找
 
$this->PreNext['next'] = "下一篇:<a href='$mlink'>{$nextRow['title']}</a> ";
 
在其下面添加
 
$this->PreNext['imgnext'] ="<a href='$mlink'>"."\${0}"."</a>";
 
4,查找
 
$this->PreNext['next'] = "下一篇:没有了 ";
 
在其下面添加
 
$this->PreNext['imgnext'] ="\${0}";
 
5.查找
 
else if($gtype=='next')
        {
            $rs =  $this->PreNext['next'];
        }
 
在其下面添加
 
else if($gtype=='imgnext')                 
{  
$rs =  $this->PreNext['imgnext'];    
}
 
按照上面的步骤修改即可实现图集点击图片进入下一篇,亲测可用,赶紧试试吧。
 

上一篇:织梦DedeCMS在频道页、列表页、内容页中调用全站最新文章标签方

栏    目:dedecms

下一篇:实现DedeCMSv57缩略图自动裁剪自动适应比例教程

本文标题:织梦DedeCMS 5.7图集点击图片进入下一篇的修改方法

本文地址:https://www.xiuzhanwang.com/a1/dedecms/14609.html

更多dedecms

您可能感兴趣的文章

阅读排行

本栏相关

随机阅读

网页制作CMS教程网络编程软件编程脚本语言数据库服务器

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:835971066 | 邮箱:835971066#qq.com(#换成@)

Copyright © 2002-2020 脚本教程网 版权所有