wodpress博客的评论外链加上跳转的方法
发布:smiling 来源: PHP粉丝网 添加日期:2015-11-11 10:12:04 浏览: 评论:0
wodpress博客的评论外链已经是许多博主不可接受的一种程度了,我们下面来给各位介绍一篇把外连通过修改成跳转的连接了,这样不会影响到网站权重了.
昨天的时候修改了一下博客的评论里的外链,有外链转内链,折腾了一下博客,看看效果还行,下面分享一下.
模板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); //phpfensi.com
- return$text;
- }
上面的代码其实就是把页面显示的链接都修改成http://www.phpfensi.com/goto.php?url=【网站链接】
新建goto.php,放到跟目录下.
- <!doctype html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="Author" content="">
- <meta name="Keywords" content="">
- <meta name="Description" content="">
- <meta name="robots"content="noindex,nofollow">
- <meta http-equiv="refresh"content="3;url=<?php $url=$_GET['url']; echo htmlspecialchars($url);?>">
- <title>跳转页面</title>
- <style>
- .spinner {
- margin: 100px auto 0;
- width: 150px;
- text-align: center;
- }
- .spinner > div {
- width: 30px;
- height: 30px;
- border-radius: 100%;
- display: inline-block;
- -webkit-animation: bouncedelay 1.4s infinite ease-in-out;
- animation: bouncedelay 1.4s infinite ease-in-out;
- /* Prevent first frame from flickering when animation starts */
- -webkit-animation-fill-mode: both;
- animation-fill-mode: both;
- }
- .spinner .bounce1 {
- -webkit-animation-delay: -0.32s;
- animation-delay: -0.32s;
- background-color: #428bca;
- }
- .spinner .bounce2 {
- -webkit-animation-delay: -0.16s;
- animation-delay: -0.16s;
- background-color: #Dd534F;
- }
- .spinner .bounce3 {
- -webkit-animation-delay: -0.01s;
- animation-delay: -0.01s;
- background-color: #67CF22;
- }
- @-webkit-keyframes bouncedelay {
- 0%, 80%, 100% { -webkit-transform: scale(0.0) }
- 40% { -webkit-transform: scale(1.0) }
- }
- @keyframes bouncedelay {
- 0%, 80%, 100% {
- transform: scale(0.0);
- -webkit-transform: scale(0.0);
- } 40% {
- transform: scale(1.0);
- -webkit-transform: scale(1.0);
- }
- }
- </style>
- </head>
- <body>
- <div class="spinner">
- <div class="bounce1"></div>
- <div class="bounce2"></div>
- <div class="bounce3"></div>
- </div>
- </body>
- </html>
搞定了,有问题请留言.
Tags: wodpress博客评论 wodpress外链
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)