Version Description
- FIX Image sitemaps
Download this release
Release Info
Developer | rainbowgeek |
Plugin | SEOPress |
Version | 3.2.1 |
Comparing to | |
See all releases |
Code changes from version 3.2 to 3.2.1
- inc/functions/sitemap/template-xml-sitemaps-single.php +1 -1
- readme.txt +5 -3
- seopress.php +2 -2
inc/functions/sitemap/template-xml-sitemaps-single.php
CHANGED
@@ -127,7 +127,7 @@ function seopress_xml_sitemap_single() {
|
|
127 |
}
|
128 |
$seopress_sitemaps .= '<image:image>';
|
129 |
$seopress_sitemaps .= "\n";
|
130 |
-
$seopress_sitemaps .= '<image:loc>'
|
131 |
$seopress_sitemaps .= '<![CDATA['.urldecode(esc_attr(wp_filter_nohtml_kses($url))).']]>';
|
132 |
$seopress_sitemaps .= '</image:loc>';
|
133 |
$seopress_sitemaps .= "\n";
|
127 |
}
|
128 |
$seopress_sitemaps .= '<image:image>';
|
129 |
$seopress_sitemaps .= "\n";
|
130 |
+
$seopress_sitemaps .= '<image:loc>';
|
131 |
$seopress_sitemaps .= '<![CDATA['.urldecode(esc_attr(wp_filter_nohtml_kses($url))).']]>';
|
132 |
$seopress_sitemaps .= '</image:loc>';
|
133 |
$seopress_sitemaps .= "\n";
|
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: 3.2
|
10 |
License: GPLv2 or later
|
11 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
12 |
|
@@ -160,12 +160,14 @@ Subscribe on <a href="https://www.seopress.org/" target="_blank">seopress.org</a
|
|
160 |
44. Structured Data Types metaboxe in post, page, custom post type (PRO)
|
161 |
|
162 |
== Changelog ==
|
|
|
|
|
163 |
= 3.2 =
|
164 |
* NEW WPML officially supported (still one issue with duplicate sitemap)
|
165 |
* NEW Polylang compatibility for translating options (site title, global titles / meta desc, google analytics user consent message...)
|
166 |
* NEW The SEO Framework import tool
|
167 |
-
* NEW Add Local Business schema on a per post basis
|
168 |
-
* NEW Add FAQ schema on a per post basis
|
169 |
* NEW Add orber/order by option for HTML Sitemap (SEO > XML / HTML Sitemap > HTML Sitemap)
|
170 |
* NEW 'seopress_404_exclude' to filter 404 error creation
|
171 |
* NEW Add 410 (gone) and 451 (Unavailable For Legal Reasons) redirections type
|
6 |
Requires at least: 4.4+
|
7 |
Tested up to: 4.9
|
8 |
Requires PHP: 5.4
|
9 |
+
Stable tag: 3.2.1
|
10 |
License: GPLv2 or later
|
11 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
12 |
|
160 |
44. Structured Data Types metaboxe in post, page, custom post type (PRO)
|
161 |
|
162 |
== Changelog ==
|
163 |
+
= 3.2.1 =
|
164 |
+
* FIX Image sitemaps
|
165 |
= 3.2 =
|
166 |
* NEW WPML officially supported (still one issue with duplicate sitemap)
|
167 |
* NEW Polylang compatibility for translating options (site title, global titles / meta desc, google analytics user consent message...)
|
168 |
* NEW The SEO Framework import tool
|
169 |
+
* NEW Add Local Business schema on a per post basis (PRO)
|
170 |
+
* NEW Add FAQ schema on a per post basis (PRO)
|
171 |
* NEW Add orber/order by option for HTML Sitemap (SEO > XML / HTML Sitemap > HTML Sitemap)
|
172 |
* NEW 'seopress_404_exclude' to filter 404 error creation
|
173 |
* NEW Add 410 (gone) and 451 (Unavailable For Legal Reasons) redirections type
|
seopress.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: SEOPress
|
4 |
Plugin URI: https://www.seopress.org/
|
5 |
Description: The best plugin for SEO.
|
6 |
-
Version: 3.2
|
7 |
Author: Benjamin Denis
|
8 |
Author URI: https://www.seopress.org/
|
9 |
License: GPLv2
|
@@ -53,7 +53,7 @@ register_deactivation_hook(__FILE__, 'seopress_deactivation');
|
|
53 |
///////////////////////////////////////////////////////////////////////////////////////////////////
|
54 |
//Define
|
55 |
///////////////////////////////////////////////////////////////////////////////////////////////////
|
56 |
-
define( 'SEOPRESS_VERSION', '3.2' );
|
57 |
define( 'SEOPRESS_AUTHOR', 'Benjamin Denis' );
|
58 |
|
59 |
///////////////////////////////////////////////////////////////////////////////////////////////////
|
3 |
Plugin Name: SEOPress
|
4 |
Plugin URI: https://www.seopress.org/
|
5 |
Description: The best plugin for SEO.
|
6 |
+
Version: 3.2.1
|
7 |
Author: Benjamin Denis
|
8 |
Author URI: https://www.seopress.org/
|
9 |
License: GPLv2
|
53 |
///////////////////////////////////////////////////////////////////////////////////////////////////
|
54 |
//Define
|
55 |
///////////////////////////////////////////////////////////////////////////////////////////////////
|
56 |
+
define( 'SEOPRESS_VERSION', '3.2.1' );
|
57 |
define( 'SEOPRESS_AUTHOR', 'Benjamin Denis' );
|
58 |
|
59 |
///////////////////////////////////////////////////////////////////////////////////////////////////
|