欢迎来到入门教程网!

dedecms

当前位置:主页 > CMS教程 > dedecms >

织梦列表页list标签weight权重排序方法

来源:本站原创|时间:2021-08-05|栏目:dedecms|点击:

织梦列表页list标签weight权重排序方法:(注:红色标记部分就是修改处)
 
1、打开include/arc.listview.class.php
 
2、找到 

else if($orderby=="lastpost") {

$ordersql = "  ORDER BY arc.lastpost $orderWay";

}
 
替换
 
else if($orderby=="lastpost") {

            $ordersql = "  ORDER BY arc.lastpost $orderWay";

        }

       else if($orderby=="weight") {

            $ordersql = "  ORDER BY arc.weight $orderWay";

        }
 
3、找到
 
    
 //如果不用默认的sortrank或id排序,使用联合查询(数据量大时非常缓慢)

        if(preg_match('/hot|click|lastpost/', $orderby))
 
替换
 
  
//如果不用默认的sortrank或id排序,使用联合查询(数据量大时非常缓慢)

     if(preg_match('/hot|click|lastpost|weight/', $orderby))
 
4、找到

$query = "SELECT id FROM `dede_arctiny` arc WHERE {$this->addSql} $ordersql LIMIT $limitstart,$row ";
 
替换

$query = "SELECT id FROM `dede_archives` arc WHERE {$this->addSql} $ordersql LIMIT $limitstart,$row ";
 
5、标签调用:
 
  
{dede:list orderby='weight' pagesize ='3'}

{/dede:list}
 
接下来{dede:list}标签就支持了按权重排序的调用了。
 

上一篇:织梦修改友情链接fink默认样式

栏    目:dedecms

下一篇:织梦seotitle标签自动判断

本文标题:织梦列表页list标签weight权重排序方法

本文地址:https://www.xiuzhanwang.com/a1/dedecms/13912.html

更多dedecms

您可能感兴趣的文章

阅读排行

本栏相关

随机阅读

网页制作CMS教程网络编程软件编程脚本语言数据库服务器

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:835971066 | 邮箱:835971066#qq.com(#换成@)

Copyright © 2002-2020 脚本教程网 版权所有