DEDECMS点击图片进入下一页功能如何实现

CMS教程   发布日期:2020年06月08日   浏览次数:5483

现在很多使用dedecms做门户网站的都有图片或图集频道,有些站长为了增加人气也上线了此类频道,对于使用DedeCMS建站的站长来说,最想实现的就是点击图片进入下一页这个功能了。

直接入正题,特点是:不修改源码,只在模板上做处理。

修改 include/arc.archives.class.php

1.查找“//解析模板,对内容里的变动进行赋值”在这段话上面添加以下代码 :

  1. function ClickPicNext($ismake=1,$aid,&$body) 
  2. { 
  3. global $cfg_rewrite; 
  4. if($this->NowPage!=$this->TotalPage) 
  5. { 
  6. $lPage=$this->NowPage+1; 
  7. if($ismake=0) 
  8. { 
  9. $body=preg_replace("/<(img|IMG)(.*)(src|SRC)=[\"|'| ]{0,}((.*)>)/isU","点击图片,进入下一页<br/><a href='".$this->NameFirst."_".$lPage.".".$this->ShortName."'>"."\${0}"."</a>",$body); 
  10. } 
  11. else 
  12. { 
  13. $PageList="<a href='view.php?aid=$aid&pageno=$lPage'>"."\${0}"."</a>"; 
  14. if($cfg_rewrite == 'Y') 
  15. { 
  16. $PageList = str_replace(".php?aid=","-",$PageList); 
  17. $PageList = preg_replace("/&pageno=(\d+)/i",'-\\1.html',$PageList); 
  18. } 
  19. $body=preg_replace("/<(img|IMG)(.*)(src|SRC)=[\"|'| ]{0,}((.*)>)/isU",$PageList,$body); 
  20. } 
  21. } 
  22. else 
  23. { 
  24. $body=preg_replace("/<(img|IMG)(.*)(src|SRC)=[\"|'| ]{0,}((.*)>)/isU",$this->GetPreNext('imgnext'),$body); 
  25. } 
  26. return $body; 
  27. } 
  28. 2,查找$this->Fields[$this->SplitPageField] = $this->SplitFields[$pageNo - 1]; 在其下面添加 
  29. if($ClickPicNext){ 
  30. $this->Fields[$this->SplitPageField]=$this->Fields[$this->SplitPageField]; 
  31. }else{ 
  32. $this->Fields[$this->SplitPageField]=$this->ClickPicNext($ismake,$this->Fields['id'],$this->Fields[$this->SplitPageField]); 
  33. } 
  34. 3,查找$this->PreNext['next'] = "下一篇:<a href='$mlink'>{$nextRow['title']}</a> ";在其下面添加 
  35. $this->PreNext['imgnext'] ="<a href='$mlink'>"."\${0}"."</a>"; 
  36. 4,查找$this->PreNext['next'] = "下一篇:没有了 ";在其下面添加 
  37. $this->PreNext['imgnext'] ="\${0}";

5.查找

  1. else if($gtype=='next') 
  2. { 
  3. $rs = $this->PreNext['next']; 
  4. }

在其下面添加

  1. else if($gtype=='imgnext') 
  2. { 
  3. $rs = $this->PreNext['imgnext']; 
  4. }

以上就是DEDECMS点击图片进入下一页功能如何实现的详细内容,更多关于DEDECMS点击图片进入下一页功能如何实现的资料请关注九品源码其它相关文章!