POST TIME:2020-04-09 01:31
dede點(diǎn)擊圖片進(jìn)入下一頁方法:
打開include/inc_archives_view.php
大概在444行左右,找到
$this->Fields[$this->SplitPageField]=$this->Fields[$this->SplitPageField];
注釋掉,改為
$this->Fields[$this->SplitPageField]=$this->ClickPicNext($this->Fields[$this->SplitPageField]);
然后,最后加上函數(shù),注重在最后一個(gè)括號(hào)里面!
//把圖片替換成鏈接
//----------------------------
function ClickPicNext(&$body)
{
if($this->NowPage!=$this->TotalPage){
$lPage=$this->NowPage 1;
$body=preg_replace("/<(img|IMG)(.*)(src|SRC)=[&;|'| ]{0,}((.*)>)/isU","<a href='".$this->NameFirst."_".$lPage.".".$this->ShortName."'>"."${0}"."</a>",$body);
//$body="<a href='".$this->NameFirst."_".$lPage.".".$this->ShortName."'>".$body."</a> ";
}else{
if($this->GetNext()){
$body=preg_replace("/<(img|IMG)(.*)(src|SRC)=[&;|'| ]{0,}((.*)>)/isU","<a href='".$this->GetNext()."'>"."${0}"."</a>",$body);
//$body="<a href='".$this->GetNext()."'>".$body."</a> ";