在e/class/function.php相應(yīng)位置添加ClickPicNext函數(shù)//替換禁用字符
function ReplaceWord($newstext){
global $empire,$dbtbpre;
if(empty($newstext))
{return $newstext;}
$sql=$empire->query("select newword,oldword from {$dbtbpre}enewswords");
while($r=$empire->fetch($sql))
{
$newstext=str_replace($r[oldword],$r[newword],$newstext);
}
return $newstext;
}
后邊添加
//把圖片替換成鏈接
//----------------------------
function ClickPicNext($newstext){
// global $empire,$dbtbpre;
if(empty($newstext))
{return $newstext;}
$newstext=preg_replace('//i', "$0",$newstext);
return $newstext;
}
然后,在大約1962行,即在以下代碼后:
if($public_r['opencopytext'])
{
$add[newstext]=AddNotCopyRndStr($add[newstext]);//隨機(jī)復(fù)制字符
}
添加一行$add[newstext]=ClickPicNext($add[newstext]);
這樣,點(diǎn)擊文章中的圖片,就可以鏈接至下一頁了。
版權(quán)聲明: 本站資源均來自互聯(lián)網(wǎng)或會(huì)員發(fā)布,如果侵犯了您的權(quán)益請(qǐng)與我們聯(lián)系,我們將在24小時(shí)內(nèi)刪除!謝謝!
轉(zhuǎn)載請(qǐng)注明: 帝國ecms文章圖片自動(dòng)添加下一頁鏈接