Version Description
- FIX Fatal error in XML Sitemaps
Download this release
Release Info
Developer | rainbowgeek |
Plugin | SEOPress |
Version | 2.5.1 |
Comparing to | |
See all releases |
Code changes from version 2.5 to 2.5.1
- inc/functions/sitemap/template-xml-sitemaps.php +1 -1
- readme.txt +3 -1
- seopress.php +2 -2
inc/functions/sitemap/template-xml-sitemaps.php
CHANGED
@@ -46,7 +46,7 @@ function seopress_xml_sitemap_index() {
|
|
46 |
//Taxonomies
|
47 |
if (seopress_xml_sitemap_taxonomies_list_option() !='') {
|
48 |
//Init
|
49 |
-
$seopress_xml_terms_list =
|
50 |
foreach (seopress_xml_sitemap_taxonomies_list_option() as $tax_key => $tax_value) {
|
51 |
foreach ($tax_value as $_tax_key => $_tax_value) {
|
52 |
if($_tax_value =='1') {
|
46 |
//Taxonomies
|
47 |
if (seopress_xml_sitemap_taxonomies_list_option() !='') {
|
48 |
//Init
|
49 |
+
$seopress_xml_terms_list = array();
|
50 |
foreach (seopress_xml_sitemap_taxonomies_list_option() as $tax_key => $tax_value) {
|
51 |
foreach ($tax_value as $_tax_key => $_tax_value) {
|
52 |
if($_tax_value =='1') {
|
readme.txt
CHANGED
@@ -6,7 +6,7 @@ Tags: seo, search engine optimization, meta, title, meta description, open graph
|
|
6 |
Requires at least: 4.4+
|
7 |
Tested up to: 4.9
|
8 |
Requires PHP: 5.4
|
9 |
-
Stable tag: 2.5
|
10 |
License: GPLv2 or later
|
11 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
12 |
|
@@ -153,6 +153,8 @@ Subscribe on <a href="https://www.seopress.org/" target="_blank">seopress.org</a
|
|
153 |
44. Structured Data Types metaboxe in post, page, custom post type (PRO)
|
154 |
|
155 |
== Changelog ==
|
|
|
|
|
156 |
= 2.5 =
|
157 |
* NEW Google Analytics: Moving from analytics.js to gtag.js
|
158 |
* NEW Huge improvement for accessibility (thanks to @thierrypigot for his feedbacks)
|
6 |
Requires at least: 4.4+
|
7 |
Tested up to: 4.9
|
8 |
Requires PHP: 5.4
|
9 |
+
Stable tag: 2.5.1
|
10 |
License: GPLv2 or later
|
11 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
12 |
|
153 |
44. Structured Data Types metaboxe in post, page, custom post type (PRO)
|
154 |
|
155 |
== Changelog ==
|
156 |
+
= 2.5.1 =
|
157 |
+
* FIX Fatal error in XML Sitemaps
|
158 |
= 2.5 =
|
159 |
* NEW Google Analytics: Moving from analytics.js to gtag.js
|
160 |
* NEW Huge improvement for accessibility (thanks to @thierrypigot for his feedbacks)
|
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.5
|
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.5' );
|
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.5.1
|
7 |
Author: Benjamin DENIS
|
8 |
Author URI: https://www.seopress.org/
|
9 |
License: GPLv2
|
55 |
//Define
|
56 |
///////////////////////////////////////////////////////////////////////////////////////////////////
|
57 |
|
58 |
+
define( 'SEOPRESS_VERSION', '2.5.1' );
|
59 |
define( 'SEOPRESS_AUTHOR', 'Benjamin Denis' );
|
60 |
|
61 |
///////////////////////////////////////////////////////////////////////////////////////////////////
|