为WordPress标签添加rel=”nofollow”属性

WordPress标签默认并无rel=”nofollow”属性。rel=”nofollow”属性的作用是:告诉…

WordPress标签默认并无rel=”nofollow”属性。rel=”nofollow”属性的作用是:告诉搜索引擎,无需追踪目标页,禁止蜘蛛爬行和传递权重。如果你不准备让搜索收录标签,可以通过下面的代码为标签添加该属性。

将下面的代码添加到当前主题functions.php中:

  1. function cx_tags() {
  2.     $posttags = get_the_tags();
  3.     if ($posttags) {
  4.         foreach($posttags as $tag) {
  5.             echo ‘<a class=“tag-link’ . $tag->term_id . ‘” href=“‘.get_tag_link($tag).'” rel=“nofollow”>’.$tag->name.'</a>’;
  6.         }
  7.     }
  8. }

用:

  1. <?php cx_tags(); ?>

替换主题模板中标签标准函数:

  1. <?php the_tags(); ?>

当然,你还可以在 rel=“nofollow” 后面添加 target=”_blank” 实现在新窗口或标签中打开链接。

参考:http://codex.wordpress.org/Function_Reference/get_the_tags

类别:WordPress入门

本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。

评论 (0)COMMENT

登录 账号发表你的看法,还没有账号?立即免费 注册