花魁直播高品质美女在线视频互动社区 - 花魁直播官方版

 歡迎來到素材無憂網(wǎng),按 + 收藏我們
登錄 注冊 退出 找回密碼

dede:list及dede:arclist 按權重排序的方法

時間: 2018-12-06 11:51 閱讀: 作者:素材無憂網(wǎng)

有時我們需要做文章排名,比如指定第一名到第三名在前面,這樣就用到這個權重排序方法。稍改下就可以完美支持。。

dede:list 的方法

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排序,使用聯(lián)合查詢(數(shù)據(jù)量大時非常緩慢)
     if(preg_match('/hot|click|lastpost|weight/', $orderby))

  并添加紅色部分內容。

4、標簽調用:

  {dede:list orderby='weight' orderway='asc'}

  這樣{dede:list}標簽就支持了按權重排序的調用,并且動靜態(tài)狀態(tài)下測試均成功!

 

 

下面是dede:arclist的修改方法

 

1、在織夢系統(tǒng)中找到以下目錄\include\taglib中的arclist.lib.php文件并打開

   大約在74 、75行找到:

      // arclist是否需要weight排序,默認為"N",如果需要排序則設置為"Y"
    $isweight = $ctag->GetAtt('isweight');

把這行修改為:

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

大約在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";

 

然后用orderby='weight'

版權聲明: 本站資源均來自互聯(lián)網(wǎng)或會員發(fā)布,如果侵犯了您的權益請與我們聯(lián)系,我們將在24小時內刪除!謝謝!

轉載請注明: dede:list及dede:arclist 按權重排序的方法

標簽:  
相關文章
模板推薦