Version Description
Fixed translation.
Download this release
Release Info
| Developer | looswebstudio |
| Plugin | |
| Version | 1.3.0 |
| Comparing to | |
| See all releases | |
Code changes from version 1.2.9 to 1.3.0
- class/ssp_output.php +1 -1
- readme.txt +4 -5
- seo-simple-pack.php +7 -8
class/ssp_output.php
CHANGED
|
@@ -121,7 +121,7 @@ class SSP_Output {
|
|
| 121 |
}
|
| 122 |
|
| 123 |
if ( !empty( self::$keyword ) ) {
|
| 124 |
-
echo '<meta name="
|
| 125 |
}
|
| 126 |
|
| 127 |
if ( !empty( self::$canonical ) ) {
|
| 121 |
}
|
| 122 |
|
| 123 |
if ( !empty( self::$keyword ) ) {
|
| 124 |
+
echo '<meta name="keywords" content="', esc_attr( self::$keyword ), '">', "\n";
|
| 125 |
}
|
| 126 |
|
| 127 |
if ( !empty( self::$canonical ) ) {
|
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.6
|
| 6 |
Tested up to: 5.5
|
| 7 |
-
Stable tag: 1.
|
| 8 |
Requires PHP: 5.6
|
| 9 |
License: GPLv2 or later
|
| 10 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
|
@@ -108,10 +108,11 @@ wp_head内( `_wp_render_title_tag` )で出力される`title`タグは削除す
|
|
| 108 |
|
| 109 |
|
| 110 |
== Changelog ==
|
| 111 |
-
|
| 112 |
-
= 1.2.9 =
|
| 113 |
Fixed translation.
|
| 114 |
|
|
|
|
|
|
|
| 115 |
|
| 116 |
= 1.2.8 =
|
| 117 |
- Fixed some code.
|
|
@@ -149,12 +150,10 @@ WordPress最新版への対応
|
|
| 149 |
= 1.1.9 =
|
| 150 |
コードの微調整
|
| 151 |
|
| 152 |
-
|
| 153 |
= 1.1.8 =
|
| 154 |
・項目説明の改善
|
| 155 |
・(むやみに触ると混乱するので)投稿ページのデフォルト設定からディスクリプションタグに関する設定を非表示に。これまで通り、デフォルトでディスクリプションタグはコンテンツから自動生成されます。
|
| 156 |
|
| 157 |
-
|
| 158 |
= 1.1.7 =
|
| 159 |
管理画面の表示の改善
|
| 160 |
|
| 4 |
Tags: SEO, meta, analytics, webmaster, simple, japan, meta tag
|
| 5 |
Requires at least: 4.6
|
| 6 |
Tested up to: 5.5
|
| 7 |
+
Stable tag: 1.3.0
|
| 8 |
Requires PHP: 5.6
|
| 9 |
License: GPLv2 or later
|
| 10 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
| 108 |
|
| 109 |
|
| 110 |
== Changelog ==
|
| 111 |
+
= 1.3.0 =
|
|
|
|
| 112 |
Fixed translation.
|
| 113 |
|
| 114 |
+
= 1.2.9 =
|
| 115 |
+
Fixed some code.
|
| 116 |
|
| 117 |
= 1.2.8 =
|
| 118 |
- Fixed some code.
|
| 150 |
= 1.1.9 =
|
| 151 |
コードの微調整
|
| 152 |
|
|
|
|
| 153 |
= 1.1.8 =
|
| 154 |
・項目説明の改善
|
| 155 |
・(むやみに触ると混乱するので)投稿ページのデフォルト設定からディスクリプションタグに関する設定を非表示に。これまで通り、デフォルトでディスクリプションタグはコンテンツから自動生成されます。
|
| 156 |
|
|
|
|
| 157 |
= 1.1.7 =
|
| 158 |
管理画面の表示の改善
|
| 159 |
|
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 simple SEO plugin. Meta tags and OGP tags can be easily set and customized for each page type and post.
|
| 6 |
-
* Version: 1.
|
| 7 |
* Author: LOOS WEB STUDIO
|
| 8 |
* Author URI: https://loos-web-studio.com/
|
| 9 |
* License: GPL2 or later
|
|
@@ -16,19 +16,19 @@ if ( ! defined( 'ABSPATH' ) ) exit;
|
|
| 16 |
* 定数宣言
|
| 17 |
*/
|
| 18 |
if ( ! defined( 'SSP_VERSION' ) ) {
|
| 19 |
-
|
| 20 |
}
|
| 21 |
if ( ! defined( 'SSP_FILE' ) ) {
|
| 22 |
-
|
| 23 |
}
|
| 24 |
if ( ! defined( 'SSP_PATH' ) ) {
|
| 25 |
-
|
| 26 |
}
|
| 27 |
if ( ! defined( 'SSP_BASENAME' ) ) {
|
| 28 |
-
|
| 29 |
}
|
| 30 |
if ( ! defined( 'SSP_URL' ) ) {
|
| 31 |
-
|
| 32 |
}
|
| 33 |
|
| 34 |
|
|
@@ -36,7 +36,7 @@ if ( ! defined( 'SSP_URL' ) ) {
|
|
| 36 |
* 翻訳用のテキストドメインを定義
|
| 37 |
*/
|
| 38 |
if ( ! defined( 'LOOS_SSP_DOMAIN' ) ) {
|
| 39 |
-
|
| 40 |
}
|
| 41 |
|
| 42 |
|
|
@@ -70,7 +70,6 @@ register_activation_hook( SSP_FILE, array('SSP_Activate', 'plugin_activate') );
|
|
| 70 |
register_deactivation_hook( SSP_FILE, array('SSP_Activate', 'plugin_deactivate') );
|
| 71 |
register_uninstall_hook( SSP_FILE, array('SSP_Activate', 'plugin_uninstall') );
|
| 72 |
|
| 73 |
-
|
| 74 |
/**
|
| 75 |
* SSP Init
|
| 76 |
*/
|
| 3 |
* Plugin Name: SEO SIMPLE PACK
|
| 4 |
* Plugin URI: https://wemo.tech/1670
|
| 5 |
* Description: A simple SEO plugin. Meta tags and OGP tags can be easily set and customized for each page type and post.
|
| 6 |
+
* Version: 1.3.0
|
| 7 |
* Author: LOOS WEB STUDIO
|
| 8 |
* Author URI: https://loos-web-studio.com/
|
| 9 |
* License: GPL2 or later
|
| 16 |
* 定数宣言
|
| 17 |
*/
|
| 18 |
if ( ! defined( 'SSP_VERSION' ) ) {
|
| 19 |
+
define( 'SSP_VERSION', ( defined( 'WP_DEBUG' ) && WP_DEBUG ) ? date('mdGis') : '1.3.0');
|
| 20 |
}
|
| 21 |
if ( ! defined( 'SSP_FILE' ) ) {
|
| 22 |
+
define( 'SSP_FILE', __FILE__ );
|
| 23 |
}
|
| 24 |
if ( ! defined( 'SSP_PATH' ) ) {
|
| 25 |
+
define( 'SSP_PATH', plugin_dir_path( __FILE__ ) );
|
| 26 |
}
|
| 27 |
if ( ! defined( 'SSP_BASENAME' ) ) {
|
| 28 |
+
define( 'SSP_BASENAME', plugin_basename( SSP_FILE ) );
|
| 29 |
}
|
| 30 |
if ( ! defined( 'SSP_URL' ) ) {
|
| 31 |
+
define( 'SSP_URL', plugins_url( '/', __FILE__ ) );
|
| 32 |
}
|
| 33 |
|
| 34 |
|
| 36 |
* 翻訳用のテキストドメインを定義
|
| 37 |
*/
|
| 38 |
if ( ! defined( 'LOOS_SSP_DOMAIN' ) ) {
|
| 39 |
+
define( 'LOOS_SSP_DOMAIN', 'loos-ssp' );
|
| 40 |
}
|
| 41 |
|
| 42 |
|
| 70 |
register_deactivation_hook( SSP_FILE, array('SSP_Activate', 'plugin_deactivate') );
|
| 71 |
register_uninstall_hook( SSP_FILE, array('SSP_Activate', 'plugin_uninstall') );
|
| 72 |
|
|
|
|
| 73 |
/**
|
| 74 |
* SSP Init
|
| 75 |
*/
|
