首页 > CMS > Wordpress > 正文

Wordpress 链接的XFN关系增加nofollow属性

2024-09-07 00:50:18
字体:
来源:转载
供稿:网友

今天查询站点的友链情况的时候发现“我的推荐”栏目下的链接并没有加上nofollow属性,该栏目主要存放的是一些有价值的博客,属于tiandi发起的单向友链,所以可以加上nofollow属性以免蜘蛛爬行出去。

我们来看下默认的链接关系是没有办法直接输入内容的,只能通过下面的选项来选择,但是所有的选项都没有nofollow属性,所以我们需要小小的修改一下,使得这里可以选择nofollow项目.

修改方法也很简单,xfn是在/wp-admin/meta-box.php里定义的,打开该文件,在836行左右找到类似以下代码:

  1. <tr> 
  2.  <th scope="row"><?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('identity') ?></th> 
  3.  <td><fieldset><legend class="screen-reader-text"><span><?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('identity') ?></span></legend> 
  4.  <label for="me"
  5.  <input type="checkbox" name="identity" value="me" id="me" <?php xfn_check('identity''me'); ?> /> 
  6.  <?php _e('another web address of mine') ?></label> 
  7.  </fieldset></td> 
  8. </tr> 

在下面添加以下代码即可:

  1. <tr> 
  2.  <th scope="row">Nofollow</th> 
  3.  <td><fieldset><legend class="screen-reader-text"><span>nofollow</span></legend> 
  4.  <label for="nofollow"
  5.  <input class="valinp" type="checkbox" name="nofollow" value="nofollow" id="nofollow" <?php xfn_check('nofollow''nofollow'); ?> /> 
  6.  nofollow</label> 
  7.  </fieldset></td> 
  8. </tr> 
好了,大功告成.

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表