SEOPress - Version 1.0.1

Version Description

  • FIX XML sitemaps fatal error
Download this release

Release Info

Developer rainbowgeek
Plugin Icon 128x128 SEOPress
Version 1.0.1
Comparing to
See all releases

Code changes from version 1.0 to 1.0.1

inc/functions/sitemap/template-xml-sitemaps.php CHANGED
@@ -57,7 +57,7 @@ function seopress_xml_sitemap_index() {
57
  }
58
 
59
  //Google News
60
- if (seopress_xml_sitemap_news_enable_option() !='') {
61
  $seopress_sitemaps .= "\n";
62
  $seopress_sitemaps .= '<sitemap>';
63
  $seopress_sitemaps .= "\n";
57
  }
58
 
59
  //Google News
60
+ if (function_exists("seopress_xml_sitemap_news_enable_option") && seopress_xml_sitemap_news_enable_option() !='') {
61
  $seopress_sitemaps .= "\n";
62
  $seopress_sitemaps .= '<sitemap>';
63
  $seopress_sitemaps .= "\n";
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://seopress.org/
4
  Tags: seo, search engine optimization, meta, title, description, keywords, serp, knowledge grah, schema.org, url, redirection, 301, xml sitemap, breadcrumbs, ranking
5
  Requires at least: 4.4+
6
  Tested up to: 4.7
7
- Stable tag: 1.0
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -81,6 +81,8 @@ And get early access to our pro release!
81
  9. SEOPress Metaboxe: Redirection settings
82
 
83
  == Changelog ==
 
 
84
  = 1.0 =
85
  * NEW Google Analytics
86
  * NEW Import Yoast Posts metadata in SEOPress (Title tags, Meta description, Facebook Open Graph tags (title, description and image thumbnail), Twitter tags (title, description and image thumbnail), Meta Robots (noindex, nofollow...), Canonical URL)
4
  Tags: seo, search engine optimization, meta, title, description, keywords, serp, knowledge grah, schema.org, url, redirection, 301, xml sitemap, breadcrumbs, ranking
5
  Requires at least: 4.4+
6
  Tested up to: 4.7
7
+ Stable tag: 1.0.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
81
  9. SEOPress Metaboxe: Redirection settings
82
 
83
  == Changelog ==
84
+ = 1.0.1 =
85
+ * FIX XML sitemaps fatal error
86
  = 1.0 =
87
  * NEW Google Analytics
88
  * NEW Import Yoast Posts metadata in SEOPress (Title tags, Meta description, Facebook Open Graph tags (title, description and image thumbnail), Twitter tags (title, description and image thumbnail), Meta Robots (noindex, nofollow...), Canonical URL)
seopress.php CHANGED
@@ -4,7 +4,7 @@
4
  Plugin Name: SEOPress
5
  Plugin URI: http://seopress.org/
6
  Description: The best SEO plugin.
7
- Version: 1.0
8
  Author: Benjamin DENIS
9
  Author URI: http://seopress.org/
10
  License: GPLv2
@@ -79,7 +79,7 @@ register_deactivation_hook(__FILE__, 'seopress_deactivation');
79
  //Define
80
  ///////////////////////////////////////////////////////////////////////////////////////////////////
81
 
82
- define( 'SEOPRESS_VERSION', '1.0' );
83
  define( 'SEOPRESS_AUTHOR', 'Benjamin Denis' );
84
 
85
  ///////////////////////////////////////////////////////////////////////////////////////////////////
4
  Plugin Name: SEOPress
5
  Plugin URI: http://seopress.org/
6
  Description: The best SEO plugin.
7
+ Version: 1.0.1
8
  Author: Benjamin DENIS
9
  Author URI: http://seopress.org/
10
  License: GPLv2
79
  //Define
80
  ///////////////////////////////////////////////////////////////////////////////////////////////////
81
 
82
+ define( 'SEOPRESS_VERSION', '1.0.1' );
83
  define( 'SEOPRESS_AUTHOR', 'Benjamin Denis' );
84
 
85
  ///////////////////////////////////////////////////////////////////////////////////////////////////