一个资源分享、信息整合的综合性站点。

标题: 织梦dedecms首页文章列表arclist按照'weight'权重进行排序 [打印本页]

作者: 树苗收集系    时间: 2019-11-25 15:18
标题: 织梦dedecms首页文章列表arclist按照'weight'权重进行排序
织梦dede首页新闻列表arclist按照'weight'权重进行排序

织梦CMS默认情况下是没有开启weight排序的需要修改arclist.lib.php 。

1、 在织梦CMS系统中找到以下目录\include\taglib中的arclist.lib.php文件并打开

大约在74 、75行找到:
  1. // arclist是否需要weight排序,默认为"N",如果需要排序则设置为"Y"
  2.     $isweight = $ctag->GetAtt('isweight');
复制代码
把这行修改为:
  1.   $weight = $ctag->GetAtt('weight');
复制代码

2、大约在327行找到
  1. //文档排序的方式
  2.     $ordersql = '';
  3.     if($orderby=='hot' || $orderby=='click') $ordersql = " ORDER BY arc.click $orderWay";
  4.     else if($orderby == 'sortrank' || $orderby=='pubdate') $ordersql = " ORDER BY arc.sortrank $orderWay";
  5.     else if($orderby == 'id') $ordersql = "  ORDER BY arc.id $orderWay";
  6.     else if($orderby == 'near') $ordersql = " ORDER BY ABS(arc.id - ".$arcid.")";
  7.     else if($orderby == 'lastpost') $ordersql = "  ORDER BY arc.lastpost $orderWay";
  8.     else if($orderby == 'scores') $ordersql = "  ORDER BY arc.scores $orderWay";
  9.     else if($orderby == 'rand') $ordersql = "  ORDER BY rand()";
  10.     else if($orderby == 'weight') $ordersql = "  order by arc.weight asc";
复制代码
在上面代码后增加一行
  1. else $ordersql = " ORDER BY arc.sortrank $orderWay";
复制代码
如果没有特定设置排序则按照权重先排序 。








欢迎光临 一个资源分享、信息整合的综合性站点。 (https://sorv.cn/) Powered by Discuz! X3.4