内容详情 您现在的位置是: 首页> PHP
DedeCMS开发{dede:list}标签设置 weight权重
发布时间:2021-01-02 18:44 已围观:1168
摘要DedeCMS二次开发中根据{dede:list}标签设置 weight权重排序
1、找到"根目录\include\arc.listview.class.php"文件。
2、修改代码:在文件第727行处添加按weight排序判断代码(红色部分为新添加代码)。
//排序方式
$ordersql = '';
if($orderby=="senddate" || $orderby=="id") {
$ordersql=" ORDER BY arc.id $orderWay";
}
else if($orderby=="hot" || $orderby=="click") {
$ordersql = " ORDER BY arc.click $orderWay";
}
else if($orderby=="lastpost") {
$ordersql = " ORDER BY arc.lastpost $orderWay";
}
else if($orderby=="weight") {
$ordersql = " ORDER BY arc.weight $orderWay";
}
else {
$ordersql=" ORDER BY arc.sortrank $orderWay";
}
3、再在第778行处找到此段代码
//如果不用默认的sortrank或id排序,使用联合查询(数据量大时非常缓慢) if(preg_match('/hot|click|lastpost|weight/', $orderby))
4、标签调用:
{dede:list orderby='weight' orderway='asc'}
声明:本文内容摘自网络,版权归原作者所有。如有侵权,请联系处理,谢谢~
转发:https://blog.csdn.net/linyiphp/article/details/79020982
赞一个 (6)
上一篇: 开启CURL扩展