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

dedecms教程:织梦list标签按照权重排序

织梦默认的列表页排列顺序是按照时间修改顺序,但是有些产品的重要性是有区别的,所以我们很多时候需要列表页也可以按照我们的想法自由的排列,织梦里面提供了权重这个参数。A5说下大体的步骤:OVG网站目录_网站网址收录与提交入口

1、找到"根目录/include/arc.listview.class.php"文件。OVG网站目录_网站网址收录与提交入口

2、修改代码:在文件第727行处添加按weight排序判断代码(红色部分为新添加代码)。OVG网站目录_网站网址收录与提交入口

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

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

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

$ordersql=" ORDER BY arc.id $orderWay";OVG网站目录_网站网址收录与提交入口

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

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

$ordersql = " ORDER BY arc.click $orderWay";OVG网站目录_网站网址收录与提交入口

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

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

$ordersql = " ORDER BY arc.lastpost $orderWay";OVG网站目录_网站网址收录与提交入口

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

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

$ordersql = " ORDER BY arc.weight $orderWay";OVG网站目录_网站网址收录与提交入口

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

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

$ordersql=" ORDER BY arc.sortrank $orderWay";OVG网站目录_网站网址收录与提交入口

}3、再在第778行处找到此段代码//如果不用默认的sortrank或id排序,使用联合查询(数据量大时非常缓慢)OVG网站目录_网站网址收录与提交入口

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

并添加红色部分内容。OVG网站目录_网站网址收录与提交入口

4、标签调用:OVG网站目录_网站网址收录与提交入口

{dede:list orderby='weight' orderway='asc'(注释:这里是按照从小到大排序)}//这里的顺序可以改为desec(注释:这里是按照从大到小排序)OVG网站目录_网站网址收录与提交入口

这样{dede:list}标签就支持了按权重排序的调用,并且动静态状态下测试均成功!OVG网站目录_网站网址收录与提交入口

  

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

相关文章