Version Description
(20-JULY-2021) = * Support for WordPress 5.8+ * Fixed compatibility issues with PHP 7.4
Download this release
Release Info
Developer | shareaholic |
Plugin | Similar Posts – Best Related Posts Plugin for WordPress |
Version | 3.1.5 |
Comparing to | |
See all releases |
Code changes from version 3.1.4 to 3.1.5
- languages/en/stemmer.php +4 -4
- readme.txt +7 -5
- similar-posts.php +1 -1
languages/en/stemmer.php
CHANGED
@@ -293,7 +293,7 @@ if (!defined("ENGLISHSTEMMER"))
|
|
293 |
{
|
294 |
$c = $this->regex_consonant;
|
295 |
|
296 |
-
return preg_match("#$c
|
297 |
}
|
298 |
|
299 |
|
@@ -305,9 +305,9 @@ if (!defined("ENGLISHSTEMMER"))
|
|
305 |
|
306 |
return preg_match("#($c$v$c)$#", $str, $matches)
|
307 |
AND strlen($matches[1]) == 3
|
308 |
-
AND $matches[1]
|
309 |
-
AND $matches[1]
|
310 |
-
AND $matches[1]
|
311 |
}
|
312 |
}
|
313 |
}
|
293 |
{
|
294 |
$c = $this->regex_consonant;
|
295 |
|
296 |
+
return preg_match("#$c[2]$#", $str, $matches) AND $matches[0][0] == $matches[0][1];
|
297 |
}
|
298 |
|
299 |
|
305 |
|
306 |
return preg_match("#($c$v$c)$#", $str, $matches)
|
307 |
AND strlen($matches[1]) == 3
|
308 |
+
AND $matches[1][2] != 'w'
|
309 |
+
AND $matches[1][2] != 'x'
|
310 |
+
AND $matches[1][2] != 'y';
|
311 |
}
|
312 |
}
|
313 |
}
|
readme.txt
CHANGED
@@ -2,9 +2,9 @@
|
|
2 |
Contributors: shareaholic
|
3 |
Tags: related posts, similar posts, connected posts, related posts widget, linked posts
|
4 |
Requires at least: 4.0
|
5 |
-
Tested up to: 5.
|
6 |
Requires PHP: 5.2
|
7 |
-
Stable tag: 3.1.
|
8 |
|
9 |
Displays a list of related posts similar to the current one based on content, title and/or tags. Works with all themes and is very customizable!
|
10 |
|
@@ -22,8 +22,6 @@ Similar Posts displays a list of posts that are similar or related to the curren
|
|
22 |
* output in posts, widgets and RSS
|
23 |
* over 50 options available
|
24 |
|
25 |
-
Originally developed by [Robert Marsh](http://rmarsh.com/).
|
26 |
-
|
27 |
If you need a plugin that does all the Related Posts compute processing in the cloud, please check out our other [Related Posts & Products WordPress plugin](https://shrlc.com/yPInQlI).
|
28 |
|
29 |
[Shareaholic Blog](https://www.shareaholic.com/blog) | [Privacy](https://www.shareaholic.com/privacy/) | [Terms](https://www.shareaholic.com/terms/)
|
@@ -67,6 +65,10 @@ Read the <a href="https://wordpress.org/support/plugin/similar-posts/">support f
|
|
67 |
|
68 |
|
69 |
== ChangeLog ==
|
|
|
|
|
|
|
|
|
70 |
= 3.1.4 (15-MARCH-2021) =
|
71 |
* Support for WordPress 5.7+
|
72 |
|
@@ -242,7 +244,7 @@ Read the <a href="https://wordpress.org/support/plugin/similar-posts/">support f
|
|
242 |
|
243 |
== Upgrade Notice ==
|
244 |
|
245 |
-
= 3.1.
|
246 |
We update this plugin regularly so we can make it better for you. Update to the latest version for all of the available features and improvements. Thanks for using Shareaholic!
|
247 |
|
248 |
The plugin **no longer requires** the latest version of the Post-Plugin Library. If you are upgrading from a version older than v2.6.2.0 first deactivate the plugin, then delete the plugin folder from your server. If you have the Similar Posts Feed plugin installed you must deactivate it before installing Similar Posts (which now does the same job).
|
2 |
Contributors: shareaholic
|
3 |
Tags: related posts, similar posts, connected posts, related posts widget, linked posts
|
4 |
Requires at least: 4.0
|
5 |
+
Tested up to: 5.8
|
6 |
Requires PHP: 5.2
|
7 |
+
Stable tag: 3.1.5
|
8 |
|
9 |
Displays a list of related posts similar to the current one based on content, title and/or tags. Works with all themes and is very customizable!
|
10 |
|
22 |
* output in posts, widgets and RSS
|
23 |
* over 50 options available
|
24 |
|
|
|
|
|
25 |
If you need a plugin that does all the Related Posts compute processing in the cloud, please check out our other [Related Posts & Products WordPress plugin](https://shrlc.com/yPInQlI).
|
26 |
|
27 |
[Shareaholic Blog](https://www.shareaholic.com/blog) | [Privacy](https://www.shareaholic.com/privacy/) | [Terms](https://www.shareaholic.com/terms/)
|
65 |
|
66 |
|
67 |
== ChangeLog ==
|
68 |
+
= 3.1.5 (20-JULY-2021) =
|
69 |
+
* Support for WordPress 5.8+
|
70 |
+
* Fixed compatibility issues with PHP 7.4
|
71 |
+
|
72 |
= 3.1.4 (15-MARCH-2021) =
|
73 |
* Support for WordPress 5.7+
|
74 |
|
244 |
|
245 |
== Upgrade Notice ==
|
246 |
|
247 |
+
= 3.1.5 =
|
248 |
We update this plugin regularly so we can make it better for you. Update to the latest version for all of the available features and improvements. Thanks for using Shareaholic!
|
249 |
|
250 |
The plugin **no longer requires** the latest version of the Post-Plugin Library. If you are upgrading from a version older than v2.6.2.0 first deactivate the plugin, then delete the plugin folder from your server. If you have the Similar Posts Feed plugin installed you must deactivate it before installing Similar Posts (which now does the same job).
|
similar-posts.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Similar Posts
|
4 |
Plugin URI: https://wordpress.org/plugins/similar-posts/
|
5 |
Description: Displays a highly configurable list of related posts. Similarity can be based on any combination of word usage in the content, title, or tags.
|
6 |
-
Version: 3.1.
|
7 |
Author: Shareaholic
|
8 |
Author URI: https://www.shareaholic.com
|
9 |
Text Domain: similar-posts
|
3 |
Plugin Name: Similar Posts
|
4 |
Plugin URI: https://wordpress.org/plugins/similar-posts/
|
5 |
Description: Displays a highly configurable list of related posts. Similarity can be based on any combination of word usage in the content, title, or tags.
|
6 |
+
Version: 3.1.5
|
7 |
Author: Shareaholic
|
8 |
Author URI: https://www.shareaholic.com
|
9 |
Text Domain: similar-posts
|