Version Description
Download this release
Release Info
Developer | sirzooro |
Plugin | Link Juice Keeper |
Version | 1.1 |
Comparing to | |
See all releases |
Code changes from version 1.0 to 1.1
- link-juice-keeper.php +2 -2
- readme.html +6 -2
- readme.txt +5 -1
link-juice-keeper.php
CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Link Juice Keeper
|
|
4 |
Plugin URI: http://www.poradnik-webmastera.com/projekty/link_juice_keeper/
|
5 |
Description: This plugin helps you to keep the link juice by redirecting all non-existing URLs which normally return a 404 error to the front blog page using 301 redirect.
|
6 |
Author: Daniel Frużyński
|
7 |
-
Version: 1.
|
8 |
Author URI: http://www.poradnik-webmastera.com/
|
9 |
*/
|
10 |
|
@@ -33,7 +33,7 @@ if ( !class_exists( 'LinkJuiceKeeper' ) ) {
|
|
33 |
|
34 |
//add_action( 'init', array( &$this, 'init' ) );
|
35 |
|
36 |
-
add_filter( 'status_header', array( &$this, 'status_header' ),
|
37 |
}
|
38 |
|
39 |
/*// Initialize plugin
|
4 |
Plugin URI: http://www.poradnik-webmastera.com/projekty/link_juice_keeper/
|
5 |
Description: This plugin helps you to keep the link juice by redirecting all non-existing URLs which normally return a 404 error to the front blog page using 301 redirect.
|
6 |
Author: Daniel Frużyński
|
7 |
+
Version: 1.1
|
8 |
Author URI: http://www.poradnik-webmastera.com/
|
9 |
*/
|
10 |
|
33 |
|
34 |
//add_action( 'init', array( &$this, 'init' ) );
|
35 |
|
36 |
+
add_filter( 'status_header', array( &$this, 'status_header' ), 100, 2 );
|
37 |
}
|
38 |
|
39 |
/*// Initialize plugin
|
readme.html
CHANGED
@@ -2,10 +2,10 @@
|
|
2 |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
3 |
<head>
|
4 |
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
|
5 |
-
<title>Link Juice Keeper 1.
|
6 |
</head>
|
7 |
<body>
|
8 |
-
<h1>Link Juice Keeper 1.
|
9 |
<p>This plugin helps you to keep the link juice by redirecting all non-existing URLs which normally return a 404 error to the blog front page using 301 redirect.</p>
|
10 |
<p><b>Plugin Homepage:</b> <a href="http://www.poradnik-webmastera.com/projekty/link_juice_keeper/">Link Juice Keeper</a></p>
|
11 |
<p><b>Plugin Homepage on WordPress.org:</b> <a href="http://wordpress.org/extend/plugins/link-juice-keeper/">Link Juice Keeper</a></p>
|
@@ -30,6 +30,10 @@
|
|
30 |
</ol>
|
31 |
|
32 |
<h2>Changelog</h2>
|
|
|
|
|
|
|
|
|
33 |
<p>1.0</p>
|
34 |
<ul>
|
35 |
<li>Initial version
|
2 |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
3 |
<head>
|
4 |
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
|
5 |
+
<title>Link Juice Keeper 1.1 Readme</title>
|
6 |
</head>
|
7 |
<body>
|
8 |
+
<h1>Link Juice Keeper 1.1 Readme</h1>
|
9 |
<p>This plugin helps you to keep the link juice by redirecting all non-existing URLs which normally return a 404 error to the blog front page using 301 redirect.</p>
|
10 |
<p><b>Plugin Homepage:</b> <a href="http://www.poradnik-webmastera.com/projekty/link_juice_keeper/">Link Juice Keeper</a></p>
|
11 |
<p><b>Plugin Homepage on WordPress.org:</b> <a href="http://wordpress.org/extend/plugins/link-juice-keeper/">Link Juice Keeper</a></p>
|
30 |
</ol>
|
31 |
|
32 |
<h2>Changelog</h2>
|
33 |
+
<p>1.1</p>
|
34 |
+
<ul>
|
35 |
+
<li>Decreased filter priority, so now it will run after ones with default priority
|
36 |
+
</ul>
|
37 |
<p>1.0</p>
|
38 |
<ul>
|
39 |
<li>Initial version
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: sirzooro
|
|
3 |
Tags: google, link, links, redirect, seo
|
4 |
Requires at least: 2.2
|
5 |
Tested up to: 2.7.1
|
6 |
-
Stable tag: 1.
|
7 |
|
8 |
This plugin helps you to keep the link juice by redirecting all non-existing URLs (they return error 404) to the blog front page using 301 redirect.
|
9 |
|
@@ -28,6 +28,10 @@ All of the above leads to link juice waste. You can avoid this by using this plu
|
|
28 |
|
29 |
== Changelog ==
|
30 |
|
|
|
|
|
|
|
|
|
31 |
1.0
|
32 |
|
33 |
* Initial version
|
3 |
Tags: google, link, links, redirect, seo
|
4 |
Requires at least: 2.2
|
5 |
Tested up to: 2.7.1
|
6 |
+
Stable tag: 1.1
|
7 |
|
8 |
This plugin helps you to keep the link juice by redirecting all non-existing URLs (they return error 404) to the blog front page using 301 redirect.
|
9 |
|
28 |
|
29 |
== Changelog ==
|
30 |
|
31 |
+
1.1
|
32 |
+
|
33 |
+
* Decreased filter priority, so now it will run after ones with default priority
|
34 |
+
|
35 |
1.0
|
36 |
|
37 |
* Initial version
|