当前位置:首页 > CMS教程 > WordPress > 列表

wordpress评论中的链接自动加上nofollow

发布:smiling 来源: PHP粉丝网  添加日期:2014-03-19 13:59:54 浏览: 评论:0 

方法一:该方法在打印 a 标签的 title 属性前有以下语句:

echo apply_filters( 'comments_popup_link_attributes', '' );

什么意思? 说明可以通过 comments_popup_link_attributes 为链接加上其他属性,所以我们可以在 function.php 或者在插件中加入以下代码来为 WordPress 的评论链接加上 nofollow,实例代码如下:

  1. function add_nofollow_to_comments_popup_link(){ 
  2.  return ' rel="nofollow" '
  3. add_filter('comments_popup_link_attributes''add_nofollow_to_comments_popup_link'); 

方法二:如果觉得上面的办法比较麻烦我们可参照下面办法来解决,将下面的代码放到functions.php中,则会给评论中的链接自动加上nofollow,代码如下:

  1. add_filter('comment_text''auto_nofollow');  
  2.    
  3. function auto_nofollow($content) {  
  4.     //return stripslashes(wp_rel_nofollow($content));  
  5.    
  6.     return preg_replace_callback('/<a>]+/''auto_nofollow_callback'$content);  
  7. }  
  8.    
  9. function auto_nofollow_callback($matches) {  
  10.     $link = $matches[0];  
  11.     $site_link = get_bloginfo('url');  
  12.    
  13.     if (strpos($link'rel') === false) {  
  14.         $link = preg_replace("%(href=S(?!$site_link))%i"'rel="nofollow" $1'$link);  
  15.     } elseif (preg_match("%href=S(?!$site_link)%i"$link)) {  
  16.         $link = preg_replace('/rel=S(?!nofollow)S*/i''rel="nofollow"'$link);  
  17.     }  
  18.     return $link;  

Tags: wordpress评论 链接 nofollow

分享到: