欢迎来到258分享网,纯净的网络源码分享基地!

258资源分享网

全部作品
全部作品
网站源码
微信源码
素材特效
源码插件
视频教程
建站学院
热门搜索: 织梦  农业种植  农业  安全设置  官方
258资源分享 > 建站学院 > 织梦教程 > 织梦dede首页文章列表arclist按照'weight'权重

推荐下载

HTML5响应式自适应网咯设计

2020-05-12   浏览:740

高端HTML5响应式企业通用网

2020-05-06   浏览:521

html5响应式外贸网站英文版

2020-05-08   浏览:510

HTML5自适应律师工作室类网

2020-04-04   浏览:504

HTML5影视传媒文化公司类网

2020-05-12   浏览:500

织梦dede首页文章列表arclist按照'weight'权重

发布时间:2020-02-16  

织梦dede首页文章列表arclist按照'weight'权重,

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

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

大约在74 、75行找到:

      // arclist是否需要weight排序,默认为"N",如果需要排序则设置为"Y"

    $isweight = $ctag->GetAtt('isweight');

把这行修改为:

  $weight = $ctag->GetAtt('weight');

 

2、

大约在327行找到

    //文档排序的方式

    $ordersql = '';

    if($orderby=='hot' || $orderby=='click') $ordersql = " ORDER BY arc.click $orderWay";

    else if($orderby == 'sortrank' || $orderby=='pubdate') $ordersql = " ORDER BY arc.sortrank $orderWay";

    else if($orderby == 'id') $ordersql = "  ORDER BY arc.id $orderWay";

    else if($orderby == 'near') $ordersql = " ORDER BY ABS(arc.id - ".$arcid.")";

    else if($orderby == 'lastpost') $ordersql = "  ORDER BY arc.lastpost $orderWay";

    else if($orderby == 'scores') $ordersql = "  ORDER BY arc.scores $orderWay";

    else if($orderby == 'rand') $ordersql = "  ORDER BY rand()";

    else if($orderby == 'weight') $ordersql = "  order by arc.weight asc";//在这里增加一行---->如果没有特定设置排序则按照权重先排序 。

    else $ordersql = " ORDER BY arc.sortrank $orderWay";