Home > Article > Backend Development > dedecms5.7 implements the sample code for clicking on the picture to go to the next page
这篇文章主要介绍了dedecms 5.7 实现点击图片到下一页的方法和相关修改步骤,有需要的小伙伴可以参考下
dedecms模板下载地址: www.php.cn/xiazai/code/dedecms
修改/include/arc.archives.class.php文件
1、查找 “解析模板,对内容里的变动进行赋值” 在这段话上面/**前面添加以下代码。
PHP Code复制内容到剪贴板
function ClickPicNext($ismake=1,$aid,$body) { global $cfg_rewrite; if($this->NowPage!=$this->TotalPage) { $lPage=$this->NowPage+1; if($ismake=0) { $body=preg_replace("/<(img|IMG)(.*)(src|SRC)=[\"|'| ]{0,}((.*)>)/isU","点击图片,进入下一页<br/> <a href='".$this->NameFirst."_".$lPage.".".$this->ShortName."'>"."\${0}"."</a>",$body); } else { $PageList="<a href='".$this->NameFirst."_".$lPage.".".$this->ShortName."'>"."\${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];”,在这段代码下添加以下代码:
PHP Code复制内容到剪贴板
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'] = "adb2819202023b8a46a7ad023a60202e下一组5db79b134e9f6b82c0b36e0489ee08ed "; ”在这段代码下添加以下代码:
PHP Code复制内容到剪贴板
$this->PreNext['imgnext'] ="<a href='$mlink'>"."\${0}"."</a>";
4、查找“$this->PreNext['next'] = “下一篇:没有了 “;”在这段代码下添加以下代码:
PHP Code复制内容到剪贴板
$this->PreNext['imgnext'] ="\${0}";
5、查找到以下代码:
PHP Code复制内容到剪贴板
else if($gtype=='next') { $rs = $this->PreNext['next']; }
在其下面添加以下代码:
else if($gtype=='imgnext') { $rs = $this->PreNext['imgnext']; }
{dede:field name='imgurls' alt='图片输出区'}[field:pagestyle runphp='yes'] @me= (@me==3 ? '<li>' : ''); [/field:pagestyle] <img src='[field:imgsrc/]' [field:img width /] alt='[field:title /]' border='0' /> {/dede:field}
The above is the detailed content of dedecms5.7 implements the sample code for clicking on the picture to go to the next page. For more information, please follow other related articles on the PHP Chinese website!