好湿?好紧?好多水好爽自慰,久久久噜久噜久久综合,成人做爰A片免费看黄冈,机机对机机30分钟无遮挡

主頁 > 網站建設 > 建站知識 > DEDECMS專題不能選取一級欄目的解決方案

DEDECMS專題不能選取一級欄目的解決方案

POST TIME:2020-03-28 17:55

今天一位朋友說他建立的織夢專題不能選取一級欄目,很是煩惱!向我尋求幫助,其實我也沒花什么功夫研究,只是在網上搜索了一些教程,然后測試下,現在將我測試的教程發出來,供大家研究。

打開dedeincinc_catalog_options.php,將以下代碼完全替換,即可。

友情提示:上面紅色的dede為后臺目錄,請注意自己的后臺是否修改了。另外,使用以下代碼前,請注意備份。

<?php

function GetOptionList($selid=0,$userCatalog=0,$channeltype=0)
{
global $OptionArrayList,$channels,$dsql;

$dsql->SetQuery("Select id,typename From `dede_channeltype` ");
$dsql->Execute();
$channels = Array();
while($row = $dsql->GetObject()) $channels[$row->id] = $row->typename;

$OptionArrayList = "";

//當前選中的欄目
if($selid > 0)
{
$row = $dsql->GetOne("Select id,typename,ispart,channeltype From `dede_arctype` where id='$selid'");
if($row['ispart']==1) $OptionArrayList .= "<option value='".$row['id']."' class='option1' selected='selected'>".$row['typename']."(封面頻道)</option> ";
else $OptionArrayList .= "<option value='".$row['id']."' selected='selected'>".$row['typename']."</option> ";
}

//是否限定用戶管理的欄目
if($userCatalog>0)
{ $query = "Select id,typename,ispart,channeltype From `dede_arctype` where ispart<>2 And id='$userCatalog' "; }
else
{ $query = "Select id,typename,ispart,channeltype From `dede_arctype` where ispart<>2 And reid=0 order by sortrank asc "; }

$dsql->SetQuery($query);
$dsql->Execute();

while($row=$dsql->GetObject())
{
if($row->ispart==1) $OptionArrayList .= "<option value='".$row->id."' class='option1'>".$row->typename."(封面頻道)</option> ";
else if($row->ispart==2) $OptionArrayList .="";
else if($row->channeltype!=$channeltype && $channeltype!=0) $OptionArrayList .= "<option value='".$row->id."' class='option2'>".$row->typename."(".$channels[$row->channeltype].")</option> ";
else $OptionArrayList .= "<option value='".$row->id."' class='option3'>".$row->typename."</option> ";
LogicGetOptionArray($row->id,"─",$channeltype,$dsql);
}

//
return $OptionArrayList;
}
function LogicGetOptionArray($id,$step,$channeltype,&$dsql)
{
global $OptionArrayList,$channels;
$dsql->SetQuery("Select id,typename,ispart,channeltype From `dede_arctype` where reid='".$id."' And ispart<>2 order by sortrank asc");
$dsql->Execute($id);
while($row=$dsql->GetObject($id))
{
if($row->ispart==1) $OptionArrayList .= "<option value='".$row->id."' class='option1'>$step".$row->typename."(封面頻道)</option> ";
else if($row->ispart==2) $OptionArrayList .="";
else if($row->channeltype!=$channeltype && $channeltype!=0) $OptionArrayList .='';
else $OptionArrayList .= "<option value='".$row->id."' class='option3'>$step".$row->typename."</option> ";
LogicGetOptionArray($row->id,$step."─",$channeltype,$dsql);
}
}
?>



收縮
  • 微信客服
  • 微信二維碼
  • 電話咨詢

  • 400-1100-266