一聚教程网:一个值得你收藏的教程网站

最新下载

热门教程

wodpress博客的评论外链加上跳转的方法

时间:2015-11-03 编辑:简简单单 来源:一聚教程网

昨天的时候修改了一下博客的评论里的外链,有外链转内链,折腾了一下博客,看看效果还行,下面分享一下

psong.com/wp-content/uploads/2015/10/2015102703060616631.png" />

模板function.php添加下面的代码

/**博客的评论里的外链转内链**/
add_filter('get_comment_author_link','add_redirect_comment_link', 5);
add_filter('comment_text', 'add_redirect_comment_link', 99);
function add_redirect_comment_link($text= ''){
  $text=str_replace('href="','href="'.get_option('home').'/goto.php?url=', $text);
  $text=str_replace("href='","href='".get_option('home')."/goto.php?url=", $text);
  return$text;
}

上面的代码其实就是把页面显示的链接都修改成http://www.111com.net /goto.php?url=【网站链接】
新建goto.php,放到跟目录下









 

跳转页面









搞定了,有问题请留言

热门栏目