Version Description
Release Date - 2022-12-8
- IWP-426 Verify that plugin works with WordPress 6.1
- IWP-485 Fix activation conflict with the premium version of this plugin
Download this release
Release Info
Developer | data443 |
Plugin | Inline Related Posts |
Version | 3.0.12 |
Comparing to | |
See all releases |
Code changes from version 3.0.11 to 3.0.12
- includes/classes/core/Manager.php +3 -0
- index.php +8 -2
- languages/Lang.txt +0 -3
- readme.txt +8 -2
includes/classes/core/Manager.php
CHANGED
@@ -68,6 +68,9 @@ class IRP_Manager {
|
|
68 |
}
|
69 |
|
70 |
$post=$irp->Options->getPostShown();
|
|
|
|
|
|
|
71 |
$options=array(
|
72 |
'post_type'=>$post->post_type
|
73 |
//, 'nopaging'=>TRUE
|
68 |
}
|
69 |
|
70 |
$post=$irp->Options->getPostShown();
|
71 |
+
if (!is_object($post)) {
|
72 |
+
return $ids;
|
73 |
+
}
|
74 |
$options=array(
|
75 |
'post_type'=>$post->post_type
|
76 |
//, 'nopaging'=>TRUE
|
index.php
CHANGED
@@ -6,15 +6,21 @@ Description: Inline Related Posts AUTOMATICALLY inserts related posts INSIDE you
|
|
6 |
Author: Data443
|
7 |
Author URI: https://Data443.com/
|
8 |
Email: support@intellywp.com
|
9 |
-
Version: 3.0.
|
10 |
Requires at least: 3.6.0
|
11 |
Requires PHP: 7.3
|
12 |
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
define('IRP_PLUGIN_PREFIX', 'IRP_');
|
14 |
define('IRP_PLUGIN_FILE',__FILE__);
|
15 |
define('IRP_PLUGIN_SLUG', 'intelly-related-posts');
|
16 |
define('IRP_PLUGIN_NAME', 'Inline Related Posts');
|
17 |
-
define('IRP_PLUGIN_VERSION', '3.0.
|
18 |
define('IRP_PLUGIN_AUTHOR', 'Data443');
|
19 |
define('IRP_PLUGIN_ROOT', dirname(__FILE__).'/');
|
20 |
define('IRP_PLUGIN_IMAGES', plugins_url( 'assets/images/', __FILE__ ));
|
6 |
Author: Data443
|
7 |
Author URI: https://Data443.com/
|
8 |
Email: support@intellywp.com
|
9 |
+
Version: 3.0.12
|
10 |
Requires at least: 3.6.0
|
11 |
Requires PHP: 7.3
|
12 |
*/
|
13 |
+
register_activation_hook(__FILE__, function () {
|
14 |
+
if (in_array('intelly-related-posts-pro/index.php', apply_filters('active_plugins', get_option('active_plugins')))) {
|
15 |
+
die('This plugin could not be activated because the PRO version of this plugin is active. Deactivate the PRO version before activating this one. No data will be lost.');
|
16 |
+
}
|
17 |
+
});
|
18 |
+
|
19 |
define('IRP_PLUGIN_PREFIX', 'IRP_');
|
20 |
define('IRP_PLUGIN_FILE',__FILE__);
|
21 |
define('IRP_PLUGIN_SLUG', 'intelly-related-posts');
|
22 |
define('IRP_PLUGIN_NAME', 'Inline Related Posts');
|
23 |
+
define('IRP_PLUGIN_VERSION', '3.0.12');
|
24 |
define('IRP_PLUGIN_AUTHOR', 'Data443');
|
25 |
define('IRP_PLUGIN_ROOT', dirname(__FILE__).'/');
|
26 |
define('IRP_PLUGIN_IMAGES', plugins_url( 'assets/images/', __FILE__ ));
|
languages/Lang.txt
CHANGED
@@ -196,9 +196,6 @@ Plugin5.Permalink=https://wordpress.org/plugins/gdpr-framework/
|
|
196 |
Plugin5.Subtitle=A plugin that gives you a simple and elegant interface to handle Data Subject Access Requests (DSARs) and more.
|
197 |
PluginCTA=See more..
|
198 |
|
199 |
-
YouHaveThePremiumVersion1=You have installed the PREMIUM version of this plugin, please click <a href="{0}">here</a> to have access at all the features.
|
200 |
-
YouHaveThePremiumVersion2=You can deactivate the "<b>Inline Related Posts</b>" plugin and only still active the "<b>Inline Related Posts PRO</b>" plugin
|
201 |
-
|
202 |
Settings.marginTop=CSS margin-top
|
203 |
Settings.marginBottom=CSS margin-bottom
|
204 |
GuruInfo=Below some GURU info (useful to request support at support@intellywp.com)
|
196 |
Plugin5.Subtitle=A plugin that gives you a simple and elegant interface to handle Data Subject Access Requests (DSARs) and more.
|
197 |
PluginCTA=See more..
|
198 |
|
|
|
|
|
|
|
199 |
Settings.marginTop=CSS margin-top
|
200 |
Settings.marginBottom=CSS margin-bottom
|
201 |
GuruInfo=Below some GURU info (useful to request support at support@intellywp.com)
|
readme.txt
CHANGED
@@ -2,9 +2,9 @@
|
|
2 |
Contributors: IntellyWP, Data443
|
3 |
Tags: related post, related posts,inline related posts, inside related posts, suggestions, similar post, similar posts, related,contextual, relations, seo, bounce rate, internal links, similarity, related content, inline related post, Zemanta, inline, Related Links, Contextual Related Posts, YARPP recommendation engine, YARPP
|
4 |
Requires at least: 3.6
|
5 |
-
Tested up to: 6.
|
6 |
Requires PHP: 7.3
|
7 |
-
Stable tag: 3.0.
|
8 |
|
9 |
Inline Related Posts AUTOMATICALLY inserts related posts INSIDE your content, capturing immediately the reader's attention.
|
10 |
|
@@ -95,6 +95,12 @@ Absolutely Not! Inline Related Posts is built with lightweight code so you won
|
|
95 |
|
96 |
For detailed release notes, see our documentation here: [https://intellywp.com/docs/](https://data443.atlassian.net/servicedesk/customer/portal/17/article/858652673).
|
97 |
|
|
|
|
|
|
|
|
|
|
|
|
|
98 |
= 3.0.11 =
|
99 |
*Release Date - 2022-10-11*
|
100 |
|
2 |
Contributors: IntellyWP, Data443
|
3 |
Tags: related post, related posts,inline related posts, inside related posts, suggestions, similar post, similar posts, related,contextual, relations, seo, bounce rate, internal links, similarity, related content, inline related post, Zemanta, inline, Related Links, Contextual Related Posts, YARPP recommendation engine, YARPP
|
4 |
Requires at least: 3.6
|
5 |
+
Tested up to: 6.1
|
6 |
Requires PHP: 7.3
|
7 |
+
Stable tag: 3.0.12
|
8 |
|
9 |
Inline Related Posts AUTOMATICALLY inserts related posts INSIDE your content, capturing immediately the reader's attention.
|
10 |
|
95 |
|
96 |
For detailed release notes, see our documentation here: [https://intellywp.com/docs/](https://data443.atlassian.net/servicedesk/customer/portal/17/article/858652673).
|
97 |
|
98 |
+
= 3.0.12 =
|
99 |
+
*Release Date - 2022-12-8*
|
100 |
+
|
101 |
+
* IWP-426 Verify that plugin works with WordPress 6.1
|
102 |
+
* IWP-485 Fix activation conflict with the premium version of this plugin
|
103 |
+
|
104 |
= 3.0.11 =
|
105 |
*Release Date - 2022-10-11*
|
106 |
|