dede点击图片进入下一页方法:
打开include/inc_archives_view.php
大概在444行左右,找到
$this->Fields[$this->SplitPageField]=$this->Fields[$this->SplitPageField];
注释掉,改为
$this->Fields[$this->SplitPageField]=$this->ClickPicNext($this->Fields[$this->SplitPageField]);
然后,最后加上函数,注重在最后一个括号里面!
//把图片替换成链接
//----------------------------
function ClickPicNext(&$body)
{
if($this->NowPage!=$this->TotalPage){
$lPage=$this->NowPage 1;
$body=preg_replace("/<(img|IMG)(.*)(src|SRC)=[\&;|'| ]{0,}((.*)>)/isU","<a rel="nofollow noopener noreferrer" href='".$this->NameFirst."_".$lPage.".".$this->ShortName."'>"."\${0}"."</a>",$body);
//$body="<a rel="nofollow noopener noreferrer" href='".$this->NameFirst."_".$lPage.".".$this->ShortName."'>".$body."</a> ";
}else{
if($this->GetNext()){
$body=preg_replace("/<(img|IMG)(.*)(src|SRC)=[\&;|'| ]{0,}((.*)>)/isU","<a rel="nofollow noopener noreferrer" href='".$this->GetNext()."'>"."\${0}"."</a>",$body);
//$body="<a rel="nofollow noopener noreferrer" href='".$this->GetNext()."'>".$body."</a> ";
}
}
return $body;
}
自动地把文章中的图片替换为下一页的链接,假如是最后一页,则为下一篇!
注重:先要按下面的改法,把上一篇下一篇分开才行!
到此这篇关于dede点击图片进入下一页方法就介绍到这了。任何一个活着的人都比死去的人强,可是任何一个活着的人都不比另外一个活着的人强多少。更多相关dede点击图片进入下一页方法内容请查看相关栏目,小编编辑不易,再次感谢大家的支持!