织梦导航不显示外部链接栏目,修改channelartlist标签方法_DedeCms教程

编辑Tag赚U币
教程Tag:暂无Tag,欢迎添加,赚取U币!
织梦导航不显示外部链接栏目,修改channelartlist标签方法
在文件 include/taglib/channelartlist.lib.php第67行左右,
 
查找:
  1. <span style="font-size:14px;"><span style="font-family:tahoma,geneva,sans-serif;">1 $tpsql = " reid=0 AND ispart<>2 AND ishidden<>1 AND channeltype>0 "
  2. </span></span> 
修改为:
  1. <span style="font-size:14px;"><span style="font-family:tahoma,geneva,sans-serif;">1 $tpsql = " reid=0 AND ishidden<>1 AND channeltype>0 ";  
  2. </span></span>  
即删除 AND ispart<>2
 
完成。
 
栏目为外部链接时默认使用新窗口打开,其它栏目使用当前窗口打开的修改方法。
 
查找:
  1. <span style="font-size:14px;"><span style="font-family:tahoma,geneva,sans-serif;">1 $pv->Fields['typeurl'] = GetOneTypeUrlA($typeids[$i]); 
  2. </span></span> 
代码的下一行增加:
  1. <span style="font-size:14px;"><span style="font-family:tahoma,geneva,sans-serif;">1 if($typeids[$i]['ispart'] == 2){   
  2.    $pv->Fields['typeurl'] = $pv->Fields['typeurl'].'" target="_blank'; 
  3.    } 
  4. </span></span> 
  5.   
 

这样,在输出的链接后就自动增加了新窗口打开的代码了。 仅供大家参考学习哦~

查看更多 DedeCms教程  织梦模板  织梦DedeCms视频教程  织梦dedecms专题

来源:模板无忧//所属分类:DedeCms教程/更新时间:2020-06-08
相关DedeCms教程