Version Description
1.1
Download this release
Release Info
Developer | looswebstudio |
Plugin | SEO SIMPLE PACK |
Version | 1.1.1 |
Comparing to | |
See all releases |
Code changes from version 1.1.0 to 1.1.1
- class/ssp_init.php +0 -7
- readme.txt +4 -1
- seo-simple-pack.php +2 -3
class/ssp_init.php
CHANGED
@@ -7,13 +7,6 @@ class SSP_Init {
|
|
7 |
*/
|
8 |
public function __construct() {
|
9 |
|
10 |
-
/**
|
11 |
-
* アクティベーションフック
|
12 |
-
*/
|
13 |
-
register_activation_hook( SSP_FILE, ['SSP_Methods','plugin_activate'] );
|
14 |
-
register_deactivation_hook( SSP_FILE, ['SSP_Methods','plugin_deactivate'] );
|
15 |
-
register_uninstall_hook( SSP_FILE, ['SSP_Methods','plugin_uninstall'] );
|
16 |
-
|
17 |
$this->set_ssp_data();
|
18 |
$this->set_hooks();
|
19 |
|
7 |
*/
|
8 |
public function __construct() {
|
9 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
$this->set_ssp_data();
|
11 |
$this->set_hooks();
|
12 |
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://loos-web-studio.com/
|
|
4 |
Tags: SEO,meta,analytics,webmaster,simple,japan
|
5 |
Requires at least: 4.6
|
6 |
Tested up to: 4.9.8
|
7 |
-
Stable tag: 1.1.
|
8 |
Requires PHP: 5.6
|
9 |
License: GPLv2 or later
|
10 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
@@ -109,6 +109,9 @@ wp_head内( `_wp_render_title_tag` )で出力される`title`タグは削除す
|
|
109 |
|
110 |
== Changelog ==
|
111 |
|
|
|
|
|
|
|
112 |
= 1.1.0 =
|
113 |
コードの改善 & 機能改善。
|
114 |
・主なタグの出力に`apply_filters`を適用し、好きに出力内容を上書きできるようにしました。
|
4 |
Tags: SEO,meta,analytics,webmaster,simple,japan
|
5 |
Requires at least: 4.6
|
6 |
Tested up to: 4.9.8
|
7 |
+
Stable tag: 1.1.1
|
8 |
Requires PHP: 5.6
|
9 |
License: GPLv2 or later
|
10 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
109 |
|
110 |
== Changelog ==
|
111 |
|
112 |
+
= 1.1.1 =
|
113 |
+
1.1アップデートに伴うバグフィックス
|
114 |
+
|
115 |
= 1.1.0 =
|
116 |
コードの改善 & 機能改善。
|
117 |
・主なタグの出力に`apply_filters`を適用し、好きに出力内容を上書きできるようにしました。
|
seo-simple-pack.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: SEO SIMPLE PACK
|
4 |
Plugin URI: https://wemo.tech/1670
|
5 |
Description: シンプルなSEOプラグイン。ページ種別・投稿ごとにmetaタグやOGPタグを簡単に設定・カスタマイズできます。
|
6 |
-
Version: 1.1.
|
7 |
Author: LOOS WEB STUDIO
|
8 |
Author URI: https://loos-web-studio.com/
|
9 |
License: GPL2
|
@@ -53,12 +53,11 @@ if ( (double) $phpver < 5.6 ) {
|
|
53 |
return;
|
54 |
}
|
55 |
|
56 |
-
|
57 |
/**
|
58 |
* 定数宣言
|
59 |
*/
|
60 |
if ( ! defined( 'SSP_VERSION' ) ) {
|
61 |
-
define( 'SSP_VERSION', '1.1.
|
62 |
}
|
63 |
if ( ! defined( 'SSP_FILE' ) ) {
|
64 |
define( 'SSP_FILE', __FILE__ );
|
3 |
Plugin Name: SEO SIMPLE PACK
|
4 |
Plugin URI: https://wemo.tech/1670
|
5 |
Description: シンプルなSEOプラグイン。ページ種別・投稿ごとにmetaタグやOGPタグを簡単に設定・カスタマイズできます。
|
6 |
+
Version: 1.1.1
|
7 |
Author: LOOS WEB STUDIO
|
8 |
Author URI: https://loos-web-studio.com/
|
9 |
License: GPL2
|
53 |
return;
|
54 |
}
|
55 |
|
|
|
56 |
/**
|
57 |
* 定数宣言
|
58 |
*/
|
59 |
if ( ! defined( 'SSP_VERSION' ) ) {
|
60 |
+
define( 'SSP_VERSION', '1.1.1' );
|
61 |
}
|
62 |
if ( ! defined( 'SSP_FILE' ) ) {
|
63 |
define( 'SSP_FILE', __FILE__ );
|