-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathcontextual-related-posts.php
More file actions
230 lines (203 loc) · 6.62 KB
/
Copy pathcontextual-related-posts.php
File metadata and controls
230 lines (203 loc) · 6.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
<?php
/**
* Contextual Related Posts.
*
* Contextual Related Posts is the best related posts plugin for WordPress that
* allows you to display a list of related posts on your website and in your feed.
*
* @package Contextual_Related_Posts
* @author Ajay D'Souza
* @license GPL-2.0+
* @link https://webberzone.com
* @copyright 2009-2026 Ajay D'Souza
*
* @wordpress-plugin
* Plugin Name: Contextual Related Posts
* Plugin URI: https://webberzone.com/plugins/contextual-related-posts/
* Description: Display related posts on your website or in your feed. Increase reader retention and reduce bounce rates.
* Version: 4.3.0
* Author: WebberZone
* Author URI: https://webberzone.com
* License: GPL-2.0+
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
* Text Domain: contextual-related-posts
* Domain Path: /languages
*/
namespace WebberZone\Contextual_Related_Posts;
if ( ! defined( 'WPINC' ) ) {
die;
}
/**
* Holds the version of Contextual Related Posts.
*
* @since 2.9.3
*/
if ( ! defined( 'WZ_CRP_VERSION' ) ) {
define( 'WZ_CRP_VERSION', '4.3.0' );
}
/**
* Holds the filesystem directory path (with trailing slash) for Contextual Related Posts.
*
* @since 2.3.0
*/
if ( ! defined( 'WZ_CRP_PLUGIN_FILE' ) ) {
define( 'WZ_CRP_PLUGIN_FILE', __FILE__ );
}
/**
* Holds the filesystem directory path (with trailing slash) for Contextual Related Posts.
*
* @since 2.3.0
*/
if ( ! defined( 'WZ_CRP_PLUGIN_DIR' ) ) {
define( 'WZ_CRP_PLUGIN_DIR', plugin_dir_path( WZ_CRP_PLUGIN_FILE ) );
}
/**
* Holds the filesystem directory path (with trailing slash) for Contextual Related Posts.
*
* @since 2.3.0
*/
if ( ! defined( 'WZ_CRP_PLUGIN_URL' ) ) {
define( 'WZ_CRP_PLUGIN_URL', plugin_dir_url( WZ_CRP_PLUGIN_FILE ) );
}
/**
* Holds the default thumbnail URL for Contextual Related Posts.
*
* @since 4.2.0
*/
if ( ! defined( 'WZ_CRP_DEFAULT_THUMBNAIL_URL' ) ) {
define( 'WZ_CRP_DEFAULT_THUMBNAIL_URL', WZ_CRP_PLUGIN_URL . 'default.png' );
}
/**
* Maximum words to match in the content.
*
* @since 2.3.0
*/
if ( ! defined( 'CRP_MAX_WORDS' ) ) {
define( 'CRP_MAX_WORDS', 100 );
}
/**
* CRP Cache expiration time.
*
* @since 3.0.0
*/
if ( ! defined( 'CRP_CACHE_TIME' ) ) {
define( 'CRP_CACHE_TIME', WEEK_IN_SECONDS );
}
/**
* CRP Database version.
*
* @since 3.5.0
*/
if ( ! defined( 'WZ_CRP_DB_VERSION' ) ) {
define( 'WZ_CRP_DB_VERSION', '1.0' );
}
if ( ! function_exists( __NAMESPACE__ . '\crp_deactivate_other_instances' ) ) {
/**
* Deactivate other instances of CRP when this plugin is activated.
*
* @param string $plugin The plugin being activated.
* @param bool $network_wide Whether the plugin is being activated network-wide.
*/
function crp_deactivate_other_instances( $plugin, $network_wide = false ) {
$free_plugin = 'contextual-related-posts/contextual-related-posts.php';
$pro_plugin = 'contextual-related-posts-pro/contextual-related-posts.php';
// Only proceed if one of our plugins is being activated.
if ( ! in_array( $plugin, array( $free_plugin, $pro_plugin ), true ) ) {
return;
}
$plugins_to_deactivate = array();
$deactivated_plugin = '';
// If pro is being activated, deactivate free.
if ( $pro_plugin === $plugin ) {
if ( is_plugin_active( $free_plugin ) || ( $network_wide && is_plugin_active_for_network( $free_plugin ) ) ) {
$plugins_to_deactivate[] = $free_plugin;
$deactivated_plugin = 'Contextual Related Posts';
}
}
// If free is being activated, deactivate pro.
if ( $free_plugin === $plugin ) {
if ( is_plugin_active( $pro_plugin ) || ( $network_wide && is_plugin_active_for_network( $pro_plugin ) ) ) {
$plugins_to_deactivate[] = $pro_plugin;
$deactivated_plugin = 'Contextual Related Posts Pro';
}
}
if ( ! empty( $plugins_to_deactivate ) ) {
deactivate_plugins( $plugins_to_deactivate, false, $network_wide );
set_transient( 'crp_deactivated_notice', $deactivated_plugin, 1 * HOUR_IN_SECONDS );
}
}
add_action( 'activated_plugin', __NAMESPACE__ . '\crp_deactivate_other_instances', 10, 2 );
}
// Show admin notice about automatic deactivation.
if ( ! has_action( 'admin_notices', __NAMESPACE__ . '\crp_show_deactivation_notice' ) ) {
add_action(
'admin_notices',
function () {
$deactivated_plugin = get_transient( 'crp_deactivated_notice' );
if ( $deactivated_plugin ) {
/* translators: %s: Name of the deactivated plugin */
$message = sprintf( __( "Contextual Related Posts and Contextual Related Posts PRO should not be active at the same time. We've automatically deactivated %s.", 'contextual-related-posts' ), $deactivated_plugin );
?>
<div class="updated" style="border-left: 4px solid #ffba00;">
<p><?php echo esc_html( $message ); ?></p>
</div>
<?php
delete_transient( 'crp_deactivated_notice' );
}
}
);
}
if ( ! function_exists( __NAMESPACE__ . '\crp_freemius' ) ) {
// Finally load Freemius integration.
require_once plugin_dir_path( __FILE__ ) . 'load-freemius.php';
}
// Load custom autoloader.
if ( ! function_exists( __NAMESPACE__ . '\autoload' ) ) {
require_once plugin_dir_path( __FILE__ ) . 'includes/autoloader.php';
}
if ( ! function_exists( __NAMESPACE__ . '\wz_crp' ) ) {
/**
* Returns the instance of the Contextual Related Posts main class.
*
* @since 4.0.0
*
* @return \WebberZone\Contextual_Related_Posts\Main The Contextual Related Posts Main instance.
*/
function wz_crp() {
return \WebberZone\Contextual_Related_Posts\Main::get_instance();
}
}
if ( ! function_exists( __NAMESPACE__ . '\load' ) ) {
/**
* The main function responsible for returning the one true WebberZone Contextual Related Posts instance to functions everywhere.
*
* @since 3.5.0
*/
function load(): void {
wz_crp();
}
add_action( 'plugins_loaded', __NAMESPACE__ . '\load' );
}
/*
*----------------------------------------------------------------------------
* Include files
*----------------------------------------------------------------------------
*/
if ( ! function_exists( 'crp_get_settings' ) ) {
require_once plugin_dir_path( __FILE__ ) . 'includes/options-api.php';
require_once plugin_dir_path( __FILE__ ) . 'includes/class-crp-query.php';
require_once plugin_dir_path( __FILE__ ) . 'includes/functions.php';
}
// Register activation hook.
register_activation_hook( __FILE__, __NAMESPACE__ . '\Admin\Activator::activation_hook' );
// Register deactivation hook.
register_deactivation_hook( __FILE__, __NAMESPACE__ . '\Admin\Activator::deactivation_hook' );
/**
* Global variable holding the current settings for Contextual Related Posts
*
* @since 1.8.10
*
* @var array
*/
global $crp_settings;
$crp_settings = \crp_get_settings();