首页 > CMS > 织梦DEDE > 正文

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

2024-07-12 08:29:42
字体:
来源:转载
供稿:网友
在文件 include/taglib/channelartlist.lib.php第67行左右,   查找:  
1	$tpsql = " reid=0 AND ispart<>2 AND ishidden<>1 AND channeltype>0 ";

  修改为:  
1	$tpsql = " reid=0 AND ishidden<>1 AND channeltype>0 ";

  即删除 AND ispart<>2   完成。   栏目为外部链接时默认使用新窗口打开,其它栏目使用当前窗口打开的修改方法。   查找:  
1	$pv->Fields['typeurl'] = GetOneTypeUrlA($typeids[$i]);
  在代码的下一行增加:
1	if($typeids[$i]['ispart'] == 2){2	3	$pv->Fields['typeurl'] = $pv->Fields['typeurl'].'" target="_blank';4	}
  这样,在输出的链接后就自动增加了新窗口打开的代码了。 
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表