Version Description
Download this release
Release Info
Developer | barrykooij |
Plugin | Related Posts for WordPress |
Version | 1.3.2 |
Comparing to | |
See all releases |
Code changes from version 1.3.1 to 1.3.2
- {ignored-words → classes/ignored-words}/de_DE.php +0 -0
- {ignored-words → classes/ignored-words}/en_US.php +0 -0
- {ignored-words → classes/ignored-words}/fr_FR.php +0 -0
- {ignored-words → classes/ignored-words}/it_IT.php +0 -0
- {ignored-words → classes/ignored-words}/nl_NL.php +0 -0
- readme.txt +5 -2
- related-posts-for-wp.php +4 -3
{ignored-words → classes/ignored-words}/de_DE.php
RENAMED
File without changes
|
{ignored-words → classes/ignored-words}/en_US.php
RENAMED
File without changes
|
{ignored-words → classes/ignored-words}/fr_FR.php
RENAMED
File without changes
|
{ignored-words → classes/ignored-words}/it_IT.php
RENAMED
File without changes
|
{ignored-words → classes/ignored-words}/nl_NL.php
RENAMED
File without changes
|
readme.txt
CHANGED
@@ -4,11 +4,11 @@ Donate link: http://www.barrykooij.com/
|
|
4 |
Tags: related posts for wordpress, related posts for wp, simple related posts, easy related posts, related posts, related, relations, internal links, seo
|
5 |
Requires at least: 3.6
|
6 |
Tested up to: 4.0
|
7 |
-
Stable tag: 1.3.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
11 |
-
|
12 |
|
13 |
== Description ==
|
14 |
|
@@ -76,6 +76,9 @@ There is one custom table created for the post cache, this table will however no
|
|
76 |
|
77 |
== Changelog ==
|
78 |
|
|
|
|
|
|
|
79 |
= 1.3.1: August 21, 2014 =
|
80 |
* Added an uninstall procedure, see settings panel.
|
81 |
* Added plugin icons (yay).
|
4 |
Tags: related posts for wordpress, related posts for wp, simple related posts, easy related posts, related posts, related, relations, internal links, seo
|
5 |
Requires at least: 3.6
|
6 |
Tested up to: 4.0
|
7 |
+
Stable tag: 1.3.2
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
11 |
+
Display related posts without slowing down your website! Link all your existing content with only 1 click, get related posts for all your posts today!
|
12 |
|
13 |
== Description ==
|
14 |
|
76 |
|
77 |
== Changelog ==
|
78 |
|
79 |
+
= 1.3.2: August 22, 2014 =
|
80 |
+
* Fixed a bug where ignored words where not properly loaded.
|
81 |
+
|
82 |
= 1.3.1: August 21, 2014 =
|
83 |
* Added an uninstall procedure, see settings panel.
|
84 |
* Added plugin icons (yay).
|
related-posts-for-wp.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Related Posts for WordPress
|
4 |
Plugin URI: http://www.barrykooij.com/
|
5 |
Description: Related Posts for WordPress, related posts that perform!
|
6 |
-
Version: 1.3.
|
7 |
Author: Barry Kooij
|
8 |
Author URI: http://www.barrykooij.com/
|
9 |
License: GPL v3
|
@@ -26,7 +26,7 @@ class RP4WP {
|
|
26 |
|
27 |
private static $instance = null;
|
28 |
|
29 |
-
const VERSION = '1.3.
|
30 |
|
31 |
/**
|
32 |
* @var RP4WP_Settings
|
@@ -128,10 +128,11 @@ class RP4WP {
|
|
128 |
}
|
129 |
|
130 |
// Setup the nag
|
131 |
-
if(is_admin()) {
|
132 |
$nag_manager = new RP4WP_Nag_Manager();
|
133 |
$nag_manager->setup();
|
134 |
}
|
|
|
135 |
}
|
136 |
|
137 |
}
|
3 |
Plugin Name: Related Posts for WordPress
|
4 |
Plugin URI: http://www.barrykooij.com/
|
5 |
Description: Related Posts for WordPress, related posts that perform!
|
6 |
+
Version: 1.3.2
|
7 |
Author: Barry Kooij
|
8 |
Author URI: http://www.barrykooij.com/
|
9 |
License: GPL v3
|
26 |
|
27 |
private static $instance = null;
|
28 |
|
29 |
+
const VERSION = '1.3.2';
|
30 |
|
31 |
/**
|
32 |
* @var RP4WP_Settings
|
128 |
}
|
129 |
|
130 |
// Setup the nag
|
131 |
+
if ( is_admin() ) {
|
132 |
$nag_manager = new RP4WP_Nag_Manager();
|
133 |
$nag_manager->setup();
|
134 |
}
|
135 |
+
|
136 |
}
|
137 |
|
138 |
}
|