网站地图    收藏   

主页 > 后端 > wordpress教程 >

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

来源:自学PHP网    时间:2014-11-28 23:42 作者: 阅读:

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

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

方法一:该方法在打印 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;  

自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习

京ICP备14009008号-1@版权所有www.zixuephp.com

网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com

添加评论