Version Description
- Add strip_tag before outputting title tag.
Download this release
Release Info
Developer | looswebstudio |
Plugin | SEO SIMPLE PACK |
Version | 2.3.1 |
Comparing to | |
See all releases |
Code changes from version 2.3.0 to 2.3.1
- class/output.php +1 -1
- readme.txt +4 -1
- seo-simple-pack.php +1 -1
class/output.php
CHANGED
@@ -274,7 +274,7 @@ class SSP_Output {
|
|
274 |
break;
|
275 |
}
|
276 |
|
277 |
-
$title = self::replace_snippets( $title );
|
278 |
return apply_filters( 'ssp_output_title', $title );
|
279 |
}
|
280 |
|
274 |
break;
|
275 |
}
|
276 |
|
277 |
+
$title = wp_strip_all_tags( self::replace_snippets( $title ) );
|
278 |
return apply_filters( 'ssp_output_title', $title );
|
279 |
}
|
280 |
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://loos-web-studio.com/
|
|
4 |
Tags: SEO, meta, analytics, webmaster, simple, japan, meta tag
|
5 |
Requires at least: 4.9
|
6 |
Tested up to: 5.9
|
7 |
-
Stable tag: 2.3.
|
8 |
Requires PHP: 7.0
|
9 |
License: GPLv2 or later
|
10 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
@@ -121,6 +121,9 @@ The following hooks are available.
|
|
121 |
|
122 |
== Changelog ==
|
123 |
|
|
|
|
|
|
|
124 |
= 2.3.0 =
|
125 |
- Fixed readme.txt file.
|
126 |
|
4 |
Tags: SEO, meta, analytics, webmaster, simple, japan, meta tag
|
5 |
Requires at least: 4.9
|
6 |
Tested up to: 5.9
|
7 |
+
Stable tag: 2.3.1
|
8 |
Requires PHP: 7.0
|
9 |
License: GPLv2 or later
|
10 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
121 |
|
122 |
== Changelog ==
|
123 |
|
124 |
+
= 2.3.1 =
|
125 |
+
- Add strip_tag before outputting title tag.
|
126 |
+
|
127 |
= 2.3.0 =
|
128 |
- Fixed readme.txt file.
|
129 |
|
seo-simple-pack.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: SEO SIMPLE PACK
|
4 |
* Plugin URI: https://wemo.tech/1670
|
5 |
* Description: A very simple SEO plugin. You can easily set and customize meta tags and OGP tags for each page.
|
6 |
-
* Version: 2.3.
|
7 |
* Author: LOOS,Inc.
|
8 |
* Author URI: https://loos-web-studio.com/
|
9 |
* License: GPL2 or later
|
3 |
* Plugin Name: SEO SIMPLE PACK
|
4 |
* Plugin URI: https://wemo.tech/1670
|
5 |
* Description: A very simple SEO plugin. You can easily set and customize meta tags and OGP tags for each page.
|
6 |
+
* Version: 2.3.1
|
7 |
* Author: LOOS,Inc.
|
8 |
* Author URI: https://loos-web-studio.com/
|
9 |
* License: GPL2 or later
|