如何实现dedecms点击图片到下一页

秋天来啦,秋天来啦;天空像一块覆盖在大地上的蓝宝石,它已经给秋风抹试得洁净而明亮。棉花笑嘻嘻的来了,它听说好朋友—秋姑娘来了,笑的咧开了嘴。玉米在房顶上唱着歌跳着舞,别提多开心了。路边两只黑色的小狗在玩耍,看它那可爱的样子,让人忍不住的笑。石榴也许太兴奋了,竟然笑破了肚皮,苹果跑着来了,当然脸蛋是红彤彤的。
在织梦dedecms上,实现点击图片到下一页,具体修改/include/arc.archives.class.php文件
1、查找 “解析模板,对内容里的变动进行赋值” 在这段话上面/**前面添加以下代码。
[html] view plaincopy
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 rel="nofollow noopener noreferrer" href='".$this->NameFirst."_".$lPage.".".$this->ShortName."'>"."\${0}"."</a>",$body);
}
else
{
$PageList="<a rel="nofollow noopener noreferrer" 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];”,在这段代码下添加以下代码:
[html] view plaincopy
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 rel="nofollow noopener noreferrer" href='$mlink'>下一组</a> "; ”在这段代码下添加以下代码:
[html] view plaincopy
$this->PreNext['imgnext'] ="<a rel="nofollow noopener noreferrer" href='$mlink'>"."\${0}"."</a>";
4、查找“$this->PreNext['next'] = “下一篇:没有了 “;”在这段代码下添加以下代码:
[html] view plaincopy
$this->PreNext['imgnext'] ="\${0}";
5、查找到以下代码:
[html] view plaincopy
else if($gtype=='next')
{
$rs = $this->PreNext['next'];
}
在其下面添加以下代码:
[html] view plaincopy
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:imgwidth /] alt='[field:title /]' border='0' />
{/dede:field}

本文如何实现dedecms点击图片到下一页到此结束。一个人有没有钱不一定穷,但没有梦想那就穷定了。小编再次感谢大家对我们的支持!

您可能有感兴趣的文章
织梦后台文档列表添加复制文档功能支持所有模型

织梦无法上传ico图标格式文件的如何解决方法

dedecms如何实现任意页面调用当前会员信息的方

织梦dede:tag调用指定多个栏目的TAG标签

织梦栏目列表按附加表自定义字段排序