dedecms搜索功能实现

index.htm


                            
                            
                            

 

新建search.htm搜索展示页

   titlelen="200"  标题长度

{dede:list  titlelen="200" }
    
        


  •             [field:title /]

                [field:pubdate function="myDate('Y-m-d',@me)" /]
            


  •         
        {/dede:list}
        
        


            {dede:pagelist listitem="info,index,end,pre,next,pageno,option" listsize="1" /}

     

     

    修改 页码样式显示的页数

    include->arc.searchview.class.php

     

    找到:

    if($this->PageSize=="")

    {

    $this->PageSize = 20;

    }

     

    替换成:

            $ctag = $this->dtp->GetTag("page");
            if(!is_object($ctag))
            {
                $ctag = $this->dtp->GetTag("list");
            }
            if(!is_object($ctag)){
                $this->PageSize = 20;
            }else{
                if($ctag->GetAtt("pagesize")!="")
                {
                    $this->PageSize = $ctag->GetAtt("pagesize");
                }else{
                    $this->PageSize = 20;
                }
            }
     

     

    修改 DedeCMS 提示信息 提示框

    include/common.func.php

    function UpdateStat()

     

    修改

    /plus/search.php

    你可能感兴趣的:(织梦,php,dedecms搜索功能实现,dedecms搜索修改,页码样式显示的页数,dedecms搜索,提示框修改,dedecms搜索,标题长度)