Version Description
Fixed ga-tag output.
Download this release
Release Info
Developer | looswebstudio |
Plugin | SEO SIMPLE PACK |
Version | 1.3.1 |
Comparing to | |
See all releases |
Code changes from version 1.3.0 to 1.3.1
- class/ssp_output.php +1 -1
- readme.txt +5 -2
- seo-simple-pack.php +2 -2
class/ssp_output.php
CHANGED
@@ -871,7 +871,7 @@ class SSP_Output {
|
|
871 |
if ( SSP_Data::$settings[ 'google_analytics_type' ] === 'gtag' ) {
|
872 |
|
873 |
echo "<!-- Global site tag (gtag.js) - Google Analytics -->\n",
|
874 |
-
"<script async src='https://www.googletagmanager.com/gtag/js?id=",
|
875 |
"<script>\n",
|
876 |
"window.dataLayer = window.dataLayer || [];\n",
|
877 |
"function gtag(){dataLayer.push(arguments);}\n",
|
871 |
if ( SSP_Data::$settings[ 'google_analytics_type' ] === 'gtag' ) {
|
872 |
|
873 |
echo "<!-- Global site tag (gtag.js) - Google Analytics -->\n",
|
874 |
+
"<script async src='https://www.googletagmanager.com/gtag/js?id=", esc_attr( $gaid ), "'></script>\n",
|
875 |
"<script>\n",
|
876 |
"window.dataLayer = window.dataLayer || [];\n",
|
877 |
"function gtag(){dataLayer.push(arguments);}\n",
|
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.3.
|
8 |
Requires PHP: 5.6
|
9 |
License: GPLv2 or later
|
10 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
@@ -108,8 +108,11 @@ wp_head内( `_wp_render_title_tag` )で出力される`title`タグは削除す
|
|
108 |
|
109 |
|
110 |
== Changelog ==
|
|
|
|
|
|
|
111 |
= 1.3.0 =
|
112 |
-
Fixed
|
113 |
|
114 |
= 1.2.9 =
|
115 |
Fixed some code.
|
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.1
|
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.1 =
|
112 |
+
Fixed ga-tag output.
|
113 |
+
|
114 |
= 1.3.0 =
|
115 |
+
Fixed keyword output.
|
116 |
|
117 |
= 1.2.9 =
|
118 |
Fixed some code.
|
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.3.
|
7 |
* Author: LOOS WEB STUDIO
|
8 |
* Author URI: https://loos-web-studio.com/
|
9 |
* License: GPL2 or later
|
@@ -16,7 +16,7 @@ if ( ! defined( 'ABSPATH' ) ) exit;
|
|
16 |
* 定数宣言
|
17 |
*/
|
18 |
if ( ! defined( 'SSP_VERSION' ) ) {
|
19 |
-
define( 'SSP_VERSION', ( defined( 'WP_DEBUG' ) && WP_DEBUG ) ? date('mdGis') : '1.3.
|
20 |
}
|
21 |
if ( ! defined( 'SSP_FILE' ) ) {
|
22 |
define( 'SSP_FILE', __FILE__ );
|
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.1
|
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.1');
|
20 |
}
|
21 |
if ( ! defined( 'SSP_FILE' ) ) {
|
22 |
define( 'SSP_FILE', __FILE__ );
|