Version Description
- Support for WordPress 5.7.
- Support for PHP 8.0.
Download this release
Release Info
Developer | looswebstudio |
Plugin | SEO SIMPLE PACK |
Version | 2.2.2 |
Comparing to | |
See all releases |
Code changes from version 2.2.1 to 2.2.2
- class/trait/field.php +1 -1
- readme.txt +6 -2
- seo-simple-pack.php +2 -2
class/trait/field.php
CHANGED
@@ -45,7 +45,7 @@ trait Field {
|
|
45 |
/**
|
46 |
* 各設定項目を出力する
|
47 |
*/
|
48 |
-
public static function output_field( $name, $args
|
49 |
|
50 |
$args = array_merge( [
|
51 |
'title' => '',
|
45 |
/**
|
46 |
* 各設定項目を出力する
|
47 |
*/
|
48 |
+
public static function output_field( $name, $args, $now_value ) {
|
49 |
|
50 |
$args = array_merge( [
|
51 |
'title' => '',
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: looswebstudio
|
|
3 |
Donate link: https://loos-web-studio.com/
|
4 |
Tags: SEO, meta, analytics, webmaster, simple, japan, meta tag
|
5 |
Requires at least: 4.6
|
6 |
-
Tested up to: 5.
|
7 |
-
Stable tag: 2.2.
|
8 |
Requires PHP: 5.6
|
9 |
License: GPLv2 or later
|
10 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
@@ -121,6 +121,10 @@ The following hooks are available.
|
|
121 |
|
122 |
== Changelog ==
|
123 |
|
|
|
|
|
|
|
|
|
124 |
= 2.2.1 =
|
125 |
Bug fixes
|
126 |
|
3 |
Donate link: https://loos-web-studio.com/
|
4 |
Tags: SEO, meta, analytics, webmaster, simple, japan, meta tag
|
5 |
Requires at least: 4.6
|
6 |
+
Tested up to: 5.7
|
7 |
+
Stable tag: 2.2.2
|
8 |
Requires PHP: 5.6
|
9 |
License: GPLv2 or later
|
10 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
121 |
|
122 |
== Changelog ==
|
123 |
|
124 |
+
= 2.2.2 =
|
125 |
+
- Support for WordPress 5.7.
|
126 |
+
- Support for PHP 8.0.
|
127 |
+
|
128 |
= 2.2.1 =
|
129 |
Bug fixes
|
130 |
|
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.2.
|
7 |
* Author: LOOS,Inc.
|
8 |
* Author URI: https://loos-web-studio.com/
|
9 |
* License: GPL2 or later
|
@@ -17,7 +17,7 @@ defined( 'ABSPATH' ) || exit;
|
|
17 |
* 定数宣言
|
18 |
*/
|
19 |
if ( ! defined( 'SSP_VERSION' ) ) {
|
20 |
-
define( 'SSP_VERSION', ( defined( 'WP_DEBUG' ) && WP_DEBUG ) ? date_i18n( 'mdGis' ) : '2.2.
|
21 |
}
|
22 |
if ( ! defined( 'SSP_PATH' ) ) {
|
23 |
define( 'SSP_PATH', plugin_dir_path( __FILE__ ) );
|
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.2.2
|
7 |
* Author: LOOS,Inc.
|
8 |
* Author URI: https://loos-web-studio.com/
|
9 |
* License: GPL2 or later
|
17 |
* 定数宣言
|
18 |
*/
|
19 |
if ( ! defined( 'SSP_VERSION' ) ) {
|
20 |
+
define( 'SSP_VERSION', ( defined( 'WP_DEBUG' ) && WP_DEBUG ) ? date_i18n( 'mdGis' ) : '2.2.2' );
|
21 |
}
|
22 |
if ( ! defined( 'SSP_PATH' ) ) {
|
23 |
define( 'SSP_PATH', plugin_dir_path( __FILE__ ) );
|