自拍亚洲一区欧美另类,亚洲成人影院,亚洲午夜久久久久妓女影院,最近中文字幕高清中文字幕无,亚洲熟妇av一区二区三区漫画

互聯(lián)網(wǎng)知識

精準(zhǔn)傳達(dá) ? 價(jià)值共享

洞悉互聯(lián)網(wǎng)前沿資訊,探尋網(wǎng)站營銷規(guī)律

織夢dedecms搜索結(jié)果頁分頁條樣式修改

作者:狐靈科技 | 2019-07-17 09:45 |點(diǎn)擊:

織夢搜索結(jié)果頁里的分頁是跟欄目列表頁的分頁是2個(gè)完全不同樣式的,為了美觀整站統(tǒng)一分頁樣式,我們可以用css大難度的實(shí)現(xiàn),也可以修改PHP文件來實(shí)現(xiàn)

下面介紹修改PHP文件來實(shí)現(xiàn)

不想自己改的,可以下載我已經(jīng)改好的打包文件

這個(gè)修改過的文件已經(jīng)支持搜索結(jié)果頁dede:type、dede:arclist、dede:channelartlist、dede:tag、dede:php等標(biāo)簽的使用

鏈接: https://pan.baidu.com/s/1RtP0REqbi-ycz-gOaf_z8w 提取碼: 95y7
 

想自己動(dòng)手改的看下面教程

打開 /include/arc.searchview.class.php 找到
 

$this->dtp->Assign($tagid,$this->GetPageListDM($list_len));


改成
 

$ctag->GetAtt("listitem")=="" ? $listitem="index,pre,pageno,next,end,option" : $listitem=$ctag->GetAtt("listitem");
$this->dtp->Assign($tagid,$this->GetPageListDM($list_len,$listitem));


繼續(xù)找到
 

function GetPageListDM($list_len)

 

把整個(gè)函數(shù)改成
 

  1. function GetPageListDM($list_len,$listitem="index,end,pre,next,pageno")
    {
    global $oldkeyword;
    $prepage="";
    $nextpage="";
    $prepagenum = $this->PageNo - 1;
    $nextpagenum = $this->PageNo + 1;
    if($list_len=="" || preg_match("/[^0-9]/", $list_len))
    {
    $list_len=3;
    }
    $totalpage = ceil($this->TotalResult / $this->PageSize);
    if($totalpage<=1 && $this->TotalResult>0)
    {
    return "<li><span class="pageinfo">共 1 頁 / ".$this->TotalResult." 條記錄</span></li> ";
    }
    if($this->TotalResult == 0)
    {
    return "<li><span class="pageinfo">共 0 頁/ ".$this->TotalResult." 條記錄</span></li> ";
    }
    $maininfo = "<li><span class="pageinfo">共 <strong>{$totalpage}</strong>頁 <strong>".$this->TotalResult."</strong>條</span></li> ";
    $purl = $this->GetCurUrl();
     
    $oldkeyword = (empty($oldkeyword) ? $this->Keyword : $oldkeyword);
     
    //當(dāng)結(jié)果超過限制時(shí),重設(shè)結(jié)果頁數(shù)
    if($this->TotalResult > $this->SearchMaxRc)
    {
    $totalpage = ceil($this->SearchMaxRc/$this->PageSize);
    }
     
    $geturl = "keyword=".urlencode($oldkeyword)."&searchtype=".$this->SearchType;
    $geturl .= "&channeltype=".$this->ChannelType."&orderby=".$this->OrderBy;
    $geturl .= "&kwtype=".$this->KType."&pagesize=".$this->PageSize;
    $geturl .= "&typeid=".$this->TypeID."&TotalResult=".$this->TotalResult."&";
    $purl .= "?".$geturl;
     
    //獲得上一頁和下一頁的鏈接
    if($this->PageNo != 1)
    {
    $prepage.="<li><a href='".$purl."PageNo=$prepagenum'>上一頁</a></li> ";
    $indexpage="<li><a href='".$purl."PageNo=1'>首頁</a></li> ";
    }
    else
    {
    $indexpage="<li><a href='".$purl."PageNo=1'>首頁</a></li> ";
    }
    if($this->PageNo!=$totalpage && $totalpage>1)
    {
    $nextpage.="<li><a href='".$purl."PageNo=$nextpagenum'>下一頁</a></li> ";
    $endpage="<li><a href='".$purl."PageNo=$totalpage'>末頁</a></li> ";
    }
    else
    {
    $endpage="<li><a href='".$purl."PageNo=$totalpage'>末頁</a></li> ";
    }
     
    //獲得數(shù)字鏈接
    $listdd="";
    $total_list = $list_len * 2 + 1;
    if($this->PageNo >= $total_list)
    {
    $j = $this->PageNo - $list_len;
    $total_list = $this->PageNo + $list_len;
    if($total_list > $totalpage)
    {
    $total_list = $totalpage;
    }
    }
    else
    {
    $j=1;
    if($total_list > $totalpage)
    {
    $total_list = $totalpage;
    }
    }
    for($j; $j<=$total_list; $j++)
    {
    if($j == $this->PageNo)
    {
    $listdd.= "<li class="thisclass"><a href='".$purl."PageNo=$j'>$j</a></li> ";
    }
    else
    {
    $listdd.="<li><a href='".$purl."PageNo=$j'>$j</a></li> ";
    }
    }
     
    $plist = '';
    if(preg_match('/index/i', $listitem)) $plist .= $indexpage;
    if(preg_match('/pre/i', $listitem)) $plist .= $prepage;
    if(preg_match('/pageno/i', $listitem)) $plist .= $listdd;
    if(preg_match('/next/i', $listitem)) $plist .= $nextpage;
    if(preg_match('/end/i', $listitem)) $plist .= $endpage;
    if(preg_match('/option/i', $listitem)) $plist .= $optionlist;
    if(preg_match('/info/i', $listitem)) $plist .= $maininfo;
     
    return $plist;
    }

 

 

 

搜索結(jié)果頁 分頁條標(biāo)簽寫法(跟欄目列表分頁標(biāo)簽一樣)

<div class="dede_pages">
	<ul class="pagelist">
		{dede:pagelist listitem="index,end,pre,next,pageno,info" listsize="5"/}
	</ul>
</div>

 

 


如沒特殊注明,文章均為狐靈科技原創(chuàng),轉(zhuǎn)載請注明?? "織夢dedecms搜索結(jié)果頁分頁條樣式修改
多一份免費(fèi)策劃方案,總有益處。

請直接添加技術(shù)總監(jiān)微信聯(lián)系咨詢

網(wǎng)站設(shè)計(jì) 品牌營銷

多一份參考,總有益處

聯(lián)系狐靈科技,免費(fèi)獲得專屬《策劃方案》及報(bào)價(jià)

咨詢相關(guān)問題或預(yù)約面談,可以通過以下方式與我們聯(lián)系

業(yè)務(wù)熱線:15082661954 / 大客戶專線:15523356218