Version Description
- FIX PHP Error: Call to undefined function seopress_white_label_help_links_option()
Download this release
Release Info
Developer | rainbowgeek |
Plugin | SEOPress |
Version | 4.5.0.2 |
Comparing to | |
See all releases |
Code changes from version 4.5.0.1 to 4.5.0.2
- inc/admin/admin.php +1 -1
- readme.txt +6 -4
- seopress.php +2 -2
- vendor/composer/InstalledVersions.php +2 -2
- vendor/composer/installed.php +2 -2
inc/admin/admin.php
CHANGED
@@ -46,7 +46,7 @@ class seopress_options {
|
|
46 |
if (function_exists('seopress_get_toggle_white_label_option')) {
|
47 |
$white_label_toggle = seopress_get_toggle_white_label_option();
|
48 |
if ('1' === $white_label_toggle) {
|
49 |
-
if ('1' === seopress_white_label_help_links_option()) {
|
50 |
return;
|
51 |
}
|
52 |
}
|
46 |
if (function_exists('seopress_get_toggle_white_label_option')) {
|
47 |
$white_label_toggle = seopress_get_toggle_white_label_option();
|
48 |
if ('1' === $white_label_toggle) {
|
49 |
+
if (function_exists('seopress_white_label_help_links_option') && '1' === seopress_white_label_help_links_option()) {
|
50 |
return;
|
51 |
}
|
52 |
}
|
readme.txt
CHANGED
@@ -6,7 +6,7 @@ Tags: SEO, XML sitemap, meta title, open graph, content analysis, knowledge grap
|
|
6 |
Requires at least: 4.7+
|
7 |
Tested up to: 5.7
|
8 |
Requires PHP: 5.6
|
9 |
-
Stable tag: 4.5.0.
|
10 |
License: GPLv2 or later
|
11 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
12 |
|
@@ -323,9 +323,11 @@ You're theme is probably using a deprecated function to handle the title. <a hre
|
|
323 |
8. Installation Wizard
|
324 |
9. Schemas metabox
|
325 |
|
326 |
-
== Changelog ==
|
327 |
-
= 4.5.0.
|
328 |
-
* PHP
|
|
|
|
|
329 |
= 4.5 (25/03/2021) https://www.seopress.org/blog/seopress-4-5/ =
|
330 |
* NEW HTML sitemap enhancements: add HTML classes
|
331 |
* NEW HTML sitemap enhancements: new option to remove links from archive pages
|
6 |
Requires at least: 4.7+
|
7 |
Tested up to: 5.7
|
8 |
Requires PHP: 5.6
|
9 |
+
Stable tag: 4.5.0.2
|
10 |
License: GPLv2 or later
|
11 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
12 |
|
323 |
8. Installation Wizard
|
324 |
9. Schemas metabox
|
325 |
|
326 |
+
== Changelog ==
|
327 |
+
= 4.5.0.2 =
|
328 |
+
* FIX PHP Error: Call to undefined function seopress_white_label_help_links_option()
|
329 |
+
= 4.5.0.1 =
|
330 |
+
* FIX PHP Fatal error: Uncaught Error: Call to undefined function SEOPress\Tags\Schema\seopress_social_knowledge_phone_number_option()
|
331 |
= 4.5 (25/03/2021) https://www.seopress.org/blog/seopress-4-5/ =
|
332 |
* NEW HTML sitemap enhancements: add HTML classes
|
333 |
* NEW HTML sitemap enhancements: new option to remove links from archive pages
|
seopress.php
CHANGED
@@ -4,7 +4,7 @@ Plugin Name: SEOPress
|
|
4 |
Plugin URI: https://www.seopress.org/
|
5 |
Description: One of the best SEO plugins for WordPress.
|
6 |
Author: SEOPress
|
7 |
-
Version: 4.5.0.
|
8 |
Author URI: https://www.seopress.org/
|
9 |
License: GPLv2
|
10 |
Text Domain: wp-seopress
|
@@ -55,7 +55,7 @@ register_deactivation_hook(__FILE__, 'seopress_deactivation');
|
|
55 |
///////////////////////////////////////////////////////////////////////////////////////////////////
|
56 |
//Define
|
57 |
///////////////////////////////////////////////////////////////////////////////////////////////////
|
58 |
-
define('SEOPRESS_VERSION', '4.5.0.
|
59 |
define('SEOPRESS_AUTHOR', 'Benjamin Denis');
|
60 |
define('SEOPRESS_PLUGIN_DIR_PATH', plugin_dir_path(__FILE__));
|
61 |
define('SEOPRESS_TEMPLATE_DIR', SEOPRESS_PLUGIN_DIR_PATH . 'templates');
|
4 |
Plugin URI: https://www.seopress.org/
|
5 |
Description: One of the best SEO plugins for WordPress.
|
6 |
Author: SEOPress
|
7 |
+
Version: 4.5.0.2
|
8 |
Author URI: https://www.seopress.org/
|
9 |
License: GPLv2
|
10 |
Text Domain: wp-seopress
|
55 |
///////////////////////////////////////////////////////////////////////////////////////////////////
|
56 |
//Define
|
57 |
///////////////////////////////////////////////////////////////////////////////////////////////////
|
58 |
+
define('SEOPRESS_VERSION', '4.5.0.2');
|
59 |
define('SEOPRESS_AUTHOR', 'Benjamin Denis');
|
60 |
define('SEOPRESS_PLUGIN_DIR_PATH', plugin_dir_path(__FILE__));
|
61 |
define('SEOPRESS_TEMPLATE_DIR', SEOPRESS_PLUGIN_DIR_PATH . 'templates');
|
vendor/composer/InstalledVersions.php
CHANGED
@@ -29,7 +29,7 @@ private static $installed = array (
|
|
29 |
'aliases' =>
|
30 |
array (
|
31 |
),
|
32 |
-
'reference' => '
|
33 |
'name' => 'wp-seopress/wp-seopress',
|
34 |
),
|
35 |
'versions' =>
|
@@ -41,7 +41,7 @@ private static $installed = array (
|
|
41 |
'aliases' =>
|
42 |
array (
|
43 |
),
|
44 |
-
'reference' => '
|
45 |
),
|
46 |
),
|
47 |
);
|
29 |
'aliases' =>
|
30 |
array (
|
31 |
),
|
32 |
+
'reference' => 'c5a0e845031b44c1d5f1a3bb29e943c2d836d2b9',
|
33 |
'name' => 'wp-seopress/wp-seopress',
|
34 |
),
|
35 |
'versions' =>
|
41 |
'aliases' =>
|
42 |
array (
|
43 |
),
|
44 |
+
'reference' => 'c5a0e845031b44c1d5f1a3bb29e943c2d836d2b9',
|
45 |
),
|
46 |
),
|
47 |
);
|
vendor/composer/installed.php
CHANGED
@@ -6,7 +6,7 @@
|
|
6 |
'aliases' =>
|
7 |
array (
|
8 |
),
|
9 |
-
'reference' => '
|
10 |
'name' => 'wp-seopress/wp-seopress',
|
11 |
),
|
12 |
'versions' =>
|
@@ -18,7 +18,7 @@
|
|
18 |
'aliases' =>
|
19 |
array (
|
20 |
),
|
21 |
-
'reference' => '
|
22 |
),
|
23 |
),
|
24 |
);
|
6 |
'aliases' =>
|
7 |
array (
|
8 |
),
|
9 |
+
'reference' => 'c5a0e845031b44c1d5f1a3bb29e943c2d836d2b9',
|
10 |
'name' => 'wp-seopress/wp-seopress',
|
11 |
),
|
12 |
'versions' =>
|
18 |
'aliases' =>
|
19 |
array (
|
20 |
),
|
21 |
+
'reference' => 'c5a0e845031b44c1d5f1a3bb29e943c2d836d2b9',
|
22 |
),
|
23 |
),
|
24 |
);
|