当前位置: 首页 > 站长资讯 > 正文页面

DEDECMS列表页文档按权重排序的实现方法

本文实例讲述了DEDECMS列表页文档按权重排序的实现方法。分享给大家供大家参考。具体实现方法如下:JJ6网站目录_网站网址收录与提交入口

1、在list_artcile.htm模板中使用:JJ6网站目录_网站网址收录与提交入口

{dede:list pagesize='12' orderby='weight' orderway='asc'}JJ6网站目录_网站网址收录与提交入口

2、然后修改include目录下的arc.listview.class.php,查找else if($orderby=="lastpost。。。在下面补充JJ6网站目录_网站网址收录与提交入口

else if($orderby=="weight") {JJ6网站目录_网站网址收录与提交入口

$ordersql = " order by arc.weight $orderWay";JJ6网站目录_网站网址收录与提交入口

}JJ6网站目录_网站网址收录与提交入口

成为这样:JJ6网站目录_网站网址收录与提交入口

//排序方式JJ6网站目录_网站网址收录与提交入口

$ordersql = '';JJ6网站目录_网站网址收录与提交入口

if($orderby=="senddate" || $orderby=="id") {JJ6网站目录_网站网址收录与提交入口

$ordersql=" order by arc.id $orderWay";JJ6网站目录_网站网址收录与提交入口

} else if($orderby=="hot" || $orderby=="click"){JJ6网站目录_网站网址收录与提交入口

$ordersql = " order by arc.click $orderWay";JJ6网站目录_网站网址收录与提交入口

} else if($orderby=="lastpost") {JJ6网站目录_网站网址收录与提交入口

$ordersql = " order by arc.lastpost $orderWay";JJ6网站目录_网站网址收录与提交入口

} else if($orderby=="weight") {JJ6网站目录_网站网址收录与提交入口

$ordersql = " order by arc.weight $orderWay";JJ6网站目录_网站网址收录与提交入口

} else {JJ6网站目录_网站网址收录与提交入口

$ordersql=" order by arc.sortrank $orderWay";JJ6网站目录_网站网址收录与提交入口

}JJ6网站目录_网站网址收录与提交入口

3、同样是这个文件,查找“if(ereg('hot|click|lastpost',$orderby))”改为:JJ6网站目录_网站网址收录与提交入口

if(ereg('hot|click|weight|lastpost',$orderby))JJ6网站目录_网站网址收录与提交入口

上面三个步骤,即可实现列表页内容按权重排序,越小越靠前.JJ6网站目录_网站网址收录与提交入口

希望本文所述对大家的dedecms二次开发有所帮助。JJ6网站目录_网站网址收录与提交入口

源码技术交流QQ群 417105134JJ6网站目录_网站网址收录与提交入口

  

此文由 网站目录_网站网址收录与提交入口 编辑,未经允许不得转载!:

相关文章