欢迎来到入门教程网!

dedecms

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

织梦导航外部链接新窗口打开加上nofollow属性

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

SEO优化中,对织梦主导航的设计非常讲究,主导航链接是栏目链接,一般直接跳转;如果主导航链接是外部链接,不可直接跳出,会增加网站的跳出率。此类链接应设置在新窗口打开target="_blank",并且用nofollow不让蜘蛛抓取该链接。下面是修改方法。

  打开/include/taglib/channel.lib.php,找到

 

01 if($needRel)
02  
03  {
04  
05  $row['sonids'] = GetSonIds($row['id'], 0, false);
06  
07  if($row['sonids']=='') $row['rel'] = '';
08  
09  else $row['rel'] = "id']}'";
10  
11  }

  

下面增加

  $row['target'] = ($row['ispart']==2) ? "target = '_blank'" : "target = '_self'"; //新窗口打开

  $row['nofollow'] = ($row['ispart']==2) ? "rel = 'nofollow'" : "rel = 'follow'"; //nofollow属性

  需要currentstyle支持这两个属性,继续往下找到

  $linkOkstr = str_replace("~typename~",$row['typename'],$linkOkstr);

  

下面增加

01 $linkOkstr = str_replace("~target~",$row['target'],$linkOkstr);
02  
03 $linkOkstr = str_replace("~nofollow~",$row['nofollow'],$linkOkstr);
04  
05 在导航标签里面增加新标签[field:target/]、[field:nofollow/]即可,这两个标签根据实际情况使用。
06  
07 {dede:channel type='self' currentstyle="
08  
09 <li class='thisclass'><a href='~typelink~' ~target~ ~nofollow~>~typename~</a></li>"}
10  
11 <li><a href='[field:typeurl/]' [field:target/] [field:nofollow/]>[field:typename/]</a></li>
12  
13 {/dede:channel}
 

上一篇:织梦时间日期标签大全

栏    目:dedecms

下一篇:织梦判断某字段为空就显示自定义的内容

本文标题:织梦导航外部链接新窗口打开加上nofollow属性

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

更多dedecms

您可能感兴趣的文章

阅读排行

本栏相关

随机阅读

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

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

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

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