欢迎来到入门教程网!

dedecms

当前位置:主页 > CMS教程 > dedecms >

DEDECMS专题不能选取一级栏目的解决方案

来源:本站原创|时间:2021-08-05|栏目:dedecms|点击:

今天一位朋友说他建立的织梦dedecms 专题不能选取一级栏目,很是烦恼!向我寻求帮助,其实我也没花什么功夫研究,只是在网上搜索了一些教程,然后测试下,现在将我测试的教程发出来,供大家研究。
打开\dede\inc\inc_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>\r\n"; 
else $OptionArrayList .= "<option value='".$row['id']."' selected='selected'>".$row['typename']."</option>\r\n"; 
}
//是否限定用户管理的栏目 
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>\r\n"; 
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>\r\n"; 
else $OptionArrayList .= "<option value='".$row->id."' class='option3'>".$row->typename."</option>\r\n"; 
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>\r\n"; 
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>\r\n"; 
LogicGetOptionArray($row->id,$step."─",$channeltype,$dsql); 
?>
 

上一篇:dedecms织梦手机站m目录启用二级域名方法

栏    目:dedecms

下一篇:DedeCMS系统参数设置手册之互动设置

本文标题:DEDECMS专题不能选取一级栏目的解决方案

本文地址:https://www.xiuzhanwang.com/a1/dedecms/15449.html

更多dedecms

您可能感兴趣的文章

阅读排行

本栏相关

随机阅读

网页制作CMS教程网络编程软件编程脚本语言数据库服务器

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:835971066 | 邮箱:835971066#qq.com(#换成@)

Copyright © 2002-2020 脚本教程网 版权所有