Version Description
- FIX PHP 5.4 compatibility (we strongly recommend users to upgrade to PHP 7.2)
Download this release
Release Info
Developer | rainbowgeek |
Plugin | SEOPress |
Version | 2.9.3 |
Comparing to | |
See all releases |
Code changes from version 2.9.2.1 to 2.9.3
- inc/functions/options-social.php +1 -1
- readme.txt +3 -1
- seopress.php +2 -2
inc/functions/options-social.php
CHANGED
@@ -607,7 +607,7 @@ function seopress_thumbnail_in_content() {
|
|
607 |
$domxpath = new DOMXPath($dom);
|
608 |
|
609 |
/*Standard images*/
|
610 |
-
$imgs = $domxpath->query("//img");
|
611 |
|
612 |
if (!empty($imgs) && $imgs[0] !=NULL) {
|
613 |
$url = $imgs[0]->getAttribute('src');
|
607 |
$domxpath = new DOMXPath($dom);
|
608 |
|
609 |
/*Standard images*/
|
610 |
+
$imgs = (array)$domxpath->query("//img");
|
611 |
|
612 |
if (!empty($imgs) && $imgs[0] !=NULL) {
|
613 |
$url = $imgs[0]->getAttribute('src');
|
readme.txt
CHANGED
@@ -6,7 +6,7 @@ Tags: seo, search engine optimization, meta title, open graph, content analysis,
|
|
6 |
Requires at least: 4.4+
|
7 |
Tested up to: 4.9
|
8 |
Requires PHP: 5.4
|
9 |
-
Stable tag: 2.9.
|
10 |
License: GPLv2 or later
|
11 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
12 |
|
@@ -159,6 +159,8 @@ Subscribe on <a href="https://www.seopress.org/" target="_blank">seopress.org</a
|
|
159 |
44. Structured Data Types metaboxe in post, page, custom post type (PRO)
|
160 |
|
161 |
== Changelog ==
|
|
|
|
|
162 |
= 2.9.2.1 =
|
163 |
* FIX Encoding in xml image sitemaps
|
164 |
= 2.9.2 =
|
6 |
Requires at least: 4.4+
|
7 |
Tested up to: 4.9
|
8 |
Requires PHP: 5.4
|
9 |
+
Stable tag: 2.9.3
|
10 |
License: GPLv2 or later
|
11 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
12 |
|
159 |
44. Structured Data Types metaboxe in post, page, custom post type (PRO)
|
160 |
|
161 |
== Changelog ==
|
162 |
+
= 2.9.3 =
|
163 |
+
* FIX PHP 5.4 compatibility (we strongly recommend users to upgrade to PHP 7.2)
|
164 |
= 2.9.2.1 =
|
165 |
* FIX Encoding in xml image sitemaps
|
166 |
= 2.9.2 =
|
seopress.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: SEOPress
|
4 |
Plugin URI: https://www.seopress.org/
|
5 |
Description: The best SEO plugin.
|
6 |
-
Version: 2.9.
|
7 |
Author: Benjamin DENIS
|
8 |
Author URI: https://www.seopress.org/
|
9 |
License: GPLv2
|
@@ -55,7 +55,7 @@ register_deactivation_hook(__FILE__, 'seopress_deactivation');
|
|
55 |
//Define
|
56 |
///////////////////////////////////////////////////////////////////////////////////////////////////
|
57 |
|
58 |
-
define( 'SEOPRESS_VERSION', '2.9.
|
59 |
define( 'SEOPRESS_AUTHOR', 'Benjamin Denis' );
|
60 |
|
61 |
///////////////////////////////////////////////////////////////////////////////////////////////////
|
3 |
Plugin Name: SEOPress
|
4 |
Plugin URI: https://www.seopress.org/
|
5 |
Description: The best SEO plugin.
|
6 |
+
Version: 2.9.3
|
7 |
Author: Benjamin DENIS
|
8 |
Author URI: https://www.seopress.org/
|
9 |
License: GPLv2
|
55 |
//Define
|
56 |
///////////////////////////////////////////////////////////////////////////////////////////////////
|
57 |
|
58 |
+
define( 'SEOPRESS_VERSION', '2.9.3' );
|
59 |
define( 'SEOPRESS_AUTHOR', 'Benjamin Denis' );
|
60 |
|
61 |
///////////////////////////////////////////////////////////////////////////////////////////////////
|