建站服務(wù)器
這篇文章主要介紹DEDE如何實(shí)現(xiàn)副欄目,文中介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們一定要看完!
創(chuàng)新互聯(lián)專業(yè)為企業(yè)提供通河網(wǎng)站建設(shè)、通河做網(wǎng)站、通河網(wǎng)站設(shè)計、通河網(wǎng)站制作等企業(yè)網(wǎng)站建設(shè)、網(wǎng)頁設(shè)計與制作、通河企業(yè)網(wǎng)站模板建站服務(wù),10年通河做網(wǎng)站經(jīng)驗(yàn),不只是建網(wǎng)站,更提供有價值的思路和整體網(wǎng)絡(luò)服務(wù)。修改文件/include/taglib/arclist.lib.php第178行
代碼如下:
if($CrossID=='') //$orwheres[] = ' typeid in ('.GetSonIds($typeid).')'; $orwheres[] = ' typeid in ('.GetSonIds($typeid).') or typeid2 in ('.GetSonIds($typeid).')'; else //$orwheres[] = ' typeid in ('.GetSonIds($typeid).','.$CrossID.')'; $orwheres[] = ' typeid in ('.GetSonIds($typeid).','.$CrossID.') or typeid2 in ('.GetSonIds($typeid).','.$CrossID.')';
content_list.php文件 162行
代碼如下:
if($cid != 0) { $whereSql .= ' And arc.typeid in ('.GetSonIds($cid).')'; }
修改為
代碼如下:
if($cid != 0) { $whereSql .= " And (arc.typeid in(".GetSonIds($cid).") or arc.typeid2 in (".GetSonIds($cid)."))"; }
在欄目上顯示副欄目的名子
一、 \\dede\\content_list.php 修改代碼
//原來的是:$query = "Select arc.id,arc.typeid,arc.senddate,arc.flag,arc.ismake,
修改為:$query = "Select arc.id,arc.typeid,arc.typeid2,arc.senddate,arc.flag,arc.ismake,
二、\\dede\\templets\\content_list.html
查找:{dede:field.flag function='IsCommendArchives(@me)'/}
下面增加:{dede:field.typeid2 function="Typeid2Archives(@me)"/}
三、 \\dede\\inc\\inc_list_functions.php
增加代碼:
注意 5.3是以下代碼
//判斷副欄目是否有選擇 “0” 沒選擇
代碼如下:
function Typeid2Archives($typeid2) { if($typeid2>0) { global $tid,$dsql; $dsql->SetQuery("Select id,ispart,typename From dede_arctype where ispart='0' and id=$typeid2"); $dsql->Execute(); //單單寫這個,不用while也可以 $row = $dsql->GetObject(); while($row = $dsql->GetObject()) { return "[副:$row->typename]"; } } else { return ""; } }
dede5.5是以下代碼
//判斷副欄目是否有選擇 “0” 沒選擇
代碼如下:
function Typeid2Archives($typeid2) { if(sizeof($typeid2)>0) { global $dsql; $s=split(",",$typeid2); for($i=0;$iSetQuery("Select id,ispart,typename From dede_arctype where ispart='0' and id=$s[$i]"); $dsql->Execute(); while($row = $dsql->GetObject()) { $str.= "[副:$row->typename]"; } } return $str; } else { return ""; } }
以上是DEDE如何實(shí)現(xiàn)副欄目的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!