Version Description
Add code to remove action "wp_render_titletag".
Download this release
Release Info
Developer | looswebstudio |
Plugin | SEO SIMPLE PACK |
Version | 1.0.2 |
Comparing to | |
See all releases |
Code changes from version 1.0.1 to 1.0.2
- class/ssp_init.php +1 -0
- readme.txt +7 -1
- seo-simple-pack.php +1 -1
class/ssp_init.php
CHANGED
@@ -40,6 +40,7 @@ class SSP_Init {
|
|
40 |
add_action( 'template_redirect', [ 'SSP_Methods', 'redirect' ], 1 );
|
41 |
add_action( 'add_meta_boxes', [ 'SSP_MetaBox', 'add_ssp_metabox' ], 1);
|
42 |
add_action( 'save_post', [ 'SSP_MetaBox', 'save_ssp_metabox'] );
|
|
|
43 |
|
44 |
}
|
45 |
|
40 |
add_action( 'template_redirect', [ 'SSP_Methods', 'redirect' ], 1 );
|
41 |
add_action( 'add_meta_boxes', [ 'SSP_MetaBox', 'add_ssp_metabox' ], 1);
|
42 |
add_action( 'save_post', [ 'SSP_MetaBox', 'save_ssp_metabox'] );
|
43 |
+
remove_action('wp_head', '_wp_render_title_tag', 1);
|
44 |
|
45 |
}
|
46 |
|
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.7
|
7 |
-
Stable tag: 1.0.
|
8 |
Requires PHP: 5.4
|
9 |
License: GPLv2 or later
|
10 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
@@ -75,6 +75,9 @@ OGP画像の選択や、Facebook・Twitter用の設定をカスタマイズす
|
|
75 |
2.「プラグイン」メニューからプラグインを有効化します。
|
76 |
|
77 |
== Frequently Asked Questions ==
|
|
|
|
|
|
|
78 |
|
79 |
= robotsタグの設定は詳しくできないの? =
|
80 |
|
@@ -84,6 +87,9 @@ OGP画像の選択や、Facebook・Twitter用の設定をカスタマイズす
|
|
84 |
|
85 |
== Changelog ==
|
86 |
|
|
|
|
|
|
|
87 |
= 1.0.1 =
|
88 |
Changed readme.txt.
|
89 |
|
4 |
Tags: SEO,meta,analytics,webmaster,simple,japan
|
5 |
Requires at least: 4.6
|
6 |
Tested up to: 4.9.7
|
7 |
+
Stable tag: 1.0.2
|
8 |
Requires PHP: 5.4
|
9 |
License: GPLv2 or later
|
10 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
75 |
2.「プラグイン」メニューからプラグインを有効化します。
|
76 |
|
77 |
== Frequently Asked Questions ==
|
78 |
+
= titleタグが2重になる =
|
79 |
+
wp_head内( `_wp_render_title_tag` )で出力される`title`タグは削除するようにしていますが、`<head>`内に直接書き込んでいる場合は2重になってしまいます。
|
80 |
+
手書きの`title`タグをは削除してお使いください。
|
81 |
|
82 |
= robotsタグの設定は詳しくできないの? =
|
83 |
|
87 |
|
88 |
== Changelog ==
|
89 |
|
90 |
+
= 1.0.2 =
|
91 |
+
Add code to remove action "_wp_render_title_tag".
|
92 |
+
|
93 |
= 1.0.1 =
|
94 |
Changed readme.txt.
|
95 |
|
seo-simple-pack.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: SEO SIMPLE PACK
|
4 |
Plugin URI: (プラグインの説明と更新を示すページの URI)
|
5 |
Description: シンプルなSEOプラグイン。ページ種別・投稿ごとにmetaタグやOGPタグを簡単に設定・カスタマイズできます。
|
6 |
-
Version: 1.0.
|
7 |
Author: LOOS WEB STUDIO
|
8 |
Author URI: https://loos-web-studio.com/
|
9 |
License: GPL2
|
3 |
Plugin Name: SEO SIMPLE PACK
|
4 |
Plugin URI: (プラグインの説明と更新を示すページの URI)
|
5 |
Description: シンプルなSEOプラグイン。ページ種別・投稿ごとにmetaタグやOGPタグを簡単に設定・カスタマイズできます。
|
6 |
+
Version: 1.0.2
|
7 |
Author: LOOS WEB STUDIO
|
8 |
Author URI: https://loos-web-studio.com/
|
9 |
License: GPL2
|