网站地图    收藏   

主页 > 后端 > wordpress教程 >

WordPress更改评论者链接为站内链接 - WordPress

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

[导读] 本文章来给各位同学介绍关于如何处理wordpress博客中评论者发我链的行为,最终于我们确实自动把评论连接带自动加上跳转功能,在functions php...

WordPress更改评论者链接为站内链接

本文章来给各位同学介绍关于如何处理wordpress博客中评论者发我链的行为,最终于我们确实自动把评论连接带自动加上跳转功能,在functions.php文件加入以下代码:

  1. //评论链接重定向  
  2. add_filter('get_comment_author_link''add_redirect_comment_link', 5);  
  3. add_filter('comment_text''add_redirect_comment_link', 99);  
  4. function add_redirect_comment_link($text = ''){  
  5. $text=str_replace('href="''href="'.get_option('home').'/?r='$text);  
  6. $text=str_replace("href='""href='".get_option('home')."/?r="$text);  
  7. return $text;  
  8. }  
  9. add_action('init''redirect_comment_link');  
  10. function redirect_comment_link(){  
  11. $redirect = $_GET['r'];  
  12. if($redirect){  
  13. if(strpos($_SERVER['HTTP_REFERER'],get_option('home')) !== false){  
  14. header("Location: $redirect");  
  15. exit;  
  16. }  
  17. else {  
  18. header("Location: http://www.phpfensi.com");  
  19. exit;  
  20. }  
  21. }  

在网站根目录下的robots.txt文件中添加以下代码,用来屏蔽搜索引擎收录重定向后的网址.

Disallow: /?r=*再来看看前台评论者的链接吧,都变成如下形式了

http://www.你的连接.com/?r=http://www.phpfensi.com

但如果你的博客使用的是多说插件,那以上所有写的东西都是废话,没办法对多说里的评论起作用.

直接给WordPress评论连接加上nofollow功能

找到wordpress的functions.php(wwwrootwp-contentthemesConcisePro1.3),然后在其中添加以下代码,保存上传即可,代码如下:

  1. //评论加Nofollow 
  2.  function add_nofollow_to_comments_popup_link(){ 
  3.         return ' rel="nofollow" '
  4. add_filter('comments_popup_link_attributes''add_nofollow_to_comments_popup_link'); 

顺便优化以下,要加的地方有两个,一个是评论者的链接,还有就是那个“回复”这也是个链接,代码如下:

  1. //为评论者添加nofollow属性    
  2. function add_nofollow_to_comments_popup_link(){    
  3.     return 'rel="nofollow" ';    
  4. }    
  5. add_filter('comments_popup_link_attributes''add_nofollow_to_comments_popup_link');    
  6.    
  7. //为评论回复链接加nofollow属性    
  8. add_filter('comment_reply_link''add_nofollow_to_replay_link');    
  9. function add_nofollow_to_replay_link( $link ){    
  10.     return str_replace'")'>', '")' rel='nofollow'>'$link );    

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

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

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

添加评论