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); //Vevb.com
- return$text;
- }
上面的代碼其實就是把頁面顯示的鏈接都修改成http://www.companysz.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>
搞定了,有問題請留言.
新聞熱點
疑難解答
圖片精選