Warning: Undefined array key "night" in /www/wwwroot/dhaomu.com/wp-content/themes/b2/header.php on line 18

Discuz门户diy实现翻页功能的方法

discuz教程:discuz门户diy实现翻页功能的方法!

1、打开 \source\class\block\portal\block_article.php 文件

找到

function getdata($style, $parameter)

修改为

function getdata($style, $parameter, $bid)

找到

$query = DB::query("SELECT at.*, ac.viewnum, ac.commentnum FROM ".DB::table('portal_article_title')." at LEFT JOIN ".DB::table('portal_article_count')." ac ON at.aid=ac.aid WHERE $wheresql$keyword ORDER BY $orderby LIMIT $startrow, $items");

在其下方添加

//首页翻页修改
if($bid==53){
    $page = $_REQUEST['page']?$_REQUEST['page']:1;
    $startrow = ($page-1)*$items;
}

这里的bid为diy的记录id,查看方法可以通过firebug工具查看。此文中后面用到的bid均为此含义。

2、打开 \source\function\function_block.php 文件

找到

if($forceupdate) {
          block_updatecache($bid, true);
          $block = $_G['block'][$bid];
     }

在其上方加入:

//如果是首页最新文章,去掉缓存
    if ($bid == 53) {
        $forceupdate = 1;
    }

找到

$return = $obj->getdata($thestyle, $block['param']);

修改为

$return = $obj->getdata($thestyle, $block['param'],$bid);

3、打开 \source\function\function_core.php 文件

找到 function block_display($bid) 方法

在其方法内的尾部加入:

//翻页更改
if($bid==53){
    $page = $_REQUEST['page']?$_REQUEST['page']:1;
    $html = "<style>"
        . ".page{padding:10px; float:left;}"
        . ".page li{float:left; line-height:20px; padding:8px; font-size:16px;}"
        . ".page li .on{color:#f57500; font-weight:800;}"
        . "</style>";
    $html .= '<div class="page"><ul>';
    if($page<11){
    for($i=1;$i<21;$i++){
        if($page == $i){
        $html.='<li><a href="/?page='.$i.'" class="on">'.$i.'</a></li>';
        }else{
        $html.='<li><a href="/?page='.$i.'">'.$i.'</a></li>';
        }
    }
    }else{
    for($i=$page-9;$i<$page;$i++){
        $html.='<li><a href="/?page='.$i.'">'.$i.'</a></li>';
    }
    $html.='<li><a href="/?page='.$page.'" class="on">'.$page.'</a></li>';
    for($i=$page+1;$i<$page+10;$i++){
        $html.='<li><a href="/?page='.$i.'">'.$i.'</a></li>';
    }
    }
   $html .= "</ul></div>";
   echo $html;
}

至此,修改完成。

温馨提示:
1.本站大部分内容均收集于网络!若内容若侵犯到您的权益,请发送邮件至:duhaomu@163.com,我们将第一时间处理!
2.资源所需价格并非资源售卖价格,是收集、整理、编辑详情以及本站运营的适当补贴,并且本站不提供任何免费技术支持。
3.所有资源仅限于参考和学习,版权归原作者所有,更多请阅读网站声明

给TA赞赏
共{{data.count}}人
人已赞赏
编程技巧

Discuz“您当前的访问请求当中含有非法字符“的解决方法

2020-7-28 0:00:00

编程技巧

Discuz!X3.2修改用户名注册长度限制的方法

2020-7-30 0:00:00

0 条回复 A文章作者 M管理员

Warning: Trying to access array offset on value of type null in /www/wwwroot/dhaomu.com/wp-content/themes/b2/functions.php on line 3914

Warning: Trying to access array offset on value of type null in /www/wwwroot/dhaomu.com/wp-content/themes/b2/functions.php on line 3914
----《》
    暂无讨论,说说你的看法吧
个人中心
购物车
优惠劵
今日签到
有新私信 私信列表
搜索