Version Description
()
Download this release
Release Info
Developer | looswebstudio |
Plugin | SEO SIMPLE PACK |
Version | 1.1.6 |
Comparing to | |
See all releases |
Code changes from version 1.1.5 to 1.1.6
- class/ssp_init.php +1 -1
- readme.txt +5 -1
- seo-simple-pack.php +2 -2
class/ssp_init.php
CHANGED
@@ -33,7 +33,7 @@ class SSP_Init {
|
|
33 |
*/
|
34 |
private function set_hooks() {
|
35 |
|
36 |
-
add_action( 'init', [ 'SSP_Methods', 'add_custom_settings' ] );
|
37 |
add_action( 'wp', [ 'SSP_Methods', 'set_branch' ], 1 );
|
38 |
add_action( 'admin_enqueue_scripts', [ 'SSP_Methods', 'include_files' ] );
|
39 |
add_action( 'admin_menu', ['SSP_Menu', 'add_menus'] );
|
33 |
*/
|
34 |
private function set_hooks() {
|
35 |
|
36 |
+
add_action( 'init', [ 'SSP_Methods', 'add_custom_settings' ] , 999);
|
37 |
add_action( 'wp', [ 'SSP_Methods', 'set_branch' ], 1 );
|
38 |
add_action( 'admin_enqueue_scripts', [ 'SSP_Methods', 'include_files' ] );
|
39 |
add_action( 'admin_menu', ['SSP_Menu', 'add_menus'] );
|
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,10 @@ wp_head内( `_wp_render_title_tag` )で出力される`title`タグは削除す
|
|
109 |
|
110 |
== Changelog ==
|
111 |
|
|
|
|
|
|
|
|
|
112 |
= 1.1.5 =
|
113 |
apply_filtersの設定漏れを修正
|
114 |
|
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.6
|
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.6 =
|
113 |
+
バグフィックス
|
114 |
+
(カスタム投稿タイプ・カスタムタクソノミーの設定読み取り順序を後ろに)
|
115 |
+
|
116 |
= 1.1.5 =
|
117 |
apply_filtersの設定漏れを修正
|
118 |
|
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
|
@@ -57,7 +57,7 @@ if ( (double) $phpver < 5.6 ) {
|
|
57 |
* 定数宣言
|
58 |
*/
|
59 |
if ( ! defined( 'SSP_VERSION' ) ) {
|
60 |
-
define( 'SSP_VERSION', '1.1.
|
61 |
}
|
62 |
if ( ! defined( 'SSP_FILE' ) ) {
|
63 |
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.6
|
7 |
Author: LOOS WEB STUDIO
|
8 |
Author URI: https://loos-web-studio.com/
|
9 |
License: GPL2
|
57 |
* 定数宣言
|
58 |
*/
|
59 |
if ( ! defined( 'SSP_VERSION' ) ) {
|
60 |
+
define( 'SSP_VERSION', '1.1.6' );
|
61 |
}
|
62 |
if ( ! defined( 'SSP_FILE' ) ) {
|
63 |
define( 'SSP_FILE', __FILE__ );
|