首页 > CMS > 织梦DEDE > 正文

织梦pagebreak文章分页显示设置

2024-07-12 09:08:10
字体:
来源:转载
供稿:网友

织梦pagebreak文章分页显示设置:

在include/arc.archives.class.php这个类,这个主是来解析文章内容的类

找到   function GetPagebreak(totalPage,nowPage,$aid)

function GetPagebreak($totalPage, $nowPage, $aid)    {        if($totalPage==1)        {            return "";        }        // $PageList = "<li><a>共".$totalPage."页: </a></li>";        $nPage = $nowPage-1;        $lPage = $nowPage+1;        if($nowPage==1)        {            // $PageList.="<a href='#'>上一页</a>";        }        else        {            if($nPage==1)            {                // $PageList.="<a href='".$this->NameFirst.".".$this->ShortName."'>上一页</a>";            }            else            {                // $PageList.="<a href='".$this->NameFirst."_".$nPage.".".$this->ShortName."'>上一页</a>";            }        }        for($i=1;$i<=$totalPage;$i++)        {            if($i==1)            {                if($nowPage!=1)                {                    $PageList.="<a href='".$this->NameFirst.".".$this->ShortName."'  >1</a>";                }                else                {                    $PageList.="<a href='#'  class=/"on/">1</a>";                }            }            else            {                $n = $i;                if($nowPage!=$i)                {                    $PageList.="<a href='".$this->NameFirst."_".$i.".".$this->ShortName."' >".$n."</a>";                }                else                {                    $PageList.="<a href='#' class=/"on/">{$n}</a>";                }            }        }        if($lPage <= $totalPage)        {            // $PageList.="<a href='".$this->NameFirst."_".$lPage.".".$this->ShortName."'>下一页</a>";        }        else        {            // $PageList.= "<a href='#'>下一页</a>";        }        return $PageList;    }
 
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表