Version Description
Increased the priority of hooks that output meta tags.
Download this release
Release Info
Developer | looswebstudio |
Plugin | SEO SIMPLE PACK |
Version | 1.2.7 |
Comparing to | |
See all releases |
Code changes from version 1.2.6 to 1.2.7
- class/ssp_init.php +1 -1
- readme.txt +4 -1
- seo-simple-pack.php +2 -2
class/ssp_init.php
CHANGED
@@ -44,7 +44,7 @@ class SSP_Init {
|
|
44 |
add_action( 'wp', [ 'SSP_Methods', 'set_branch' ], 1 );
|
45 |
add_action( 'admin_enqueue_scripts', [ 'SSP_Methods', 'include_files' ] );
|
46 |
add_action( 'admin_menu', ['SSP_Menu', 'add_menus'] );
|
47 |
-
add_action( 'wp_head', [ 'SSP_Output', 'main' ],
|
48 |
add_action( 'template_redirect', [ 'SSP_Methods', 'redirect' ], 1 );
|
49 |
|
50 |
//titleタグの除去
|
44 |
add_action( 'wp', [ 'SSP_Methods', 'set_branch' ], 1 );
|
45 |
add_action( 'admin_enqueue_scripts', [ 'SSP_Methods', 'include_files' ] );
|
46 |
add_action( 'admin_menu', ['SSP_Menu', 'add_menus'] );
|
47 |
+
add_action( 'wp_head', [ 'SSP_Output', 'main' ], 5 );
|
48 |
add_action( 'template_redirect', [ 'SSP_Methods', 'redirect' ], 1 );
|
49 |
|
50 |
//titleタグの除去
|
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.3.2
|
7 |
-
Stable tag: 1.2.
|
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.2.6 =
|
113 |
Fixed bug in 1.2.5.
|
114 |
|
4 |
Tags: SEO, meta, analytics, webmaster, simple, japan, meta tag
|
5 |
Requires at least: 4.6
|
6 |
Tested up to: 5.3.2
|
7 |
+
Stable tag: 1.2.7
|
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.2.7 =
|
113 |
+
Increased the priority of hooks that output meta tags.
|
114 |
+
|
115 |
= 1.2.6 =
|
116 |
Fixed bug in 1.2.5.
|
117 |
|
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.2.
|
7 |
* Author: LOOS WEB STUDIO
|
8 |
* Author URI: https://loos-web-studio.com/
|
9 |
* License: GPL2 or later
|
@@ -34,7 +34,7 @@ if ( (double) $phpver < 5.6 ) {
|
|
34 |
* 定数宣言
|
35 |
*/
|
36 |
if ( ! defined( 'SSP_VERSION' ) ) {
|
37 |
-
define( 'SSP_VERSION', '1.2.
|
38 |
}
|
39 |
if ( ! defined( 'SSP_FILE' ) ) {
|
40 |
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.2.7
|
7 |
* Author: LOOS WEB STUDIO
|
8 |
* Author URI: https://loos-web-studio.com/
|
9 |
* License: GPL2 or later
|
34 |
* 定数宣言
|
35 |
*/
|
36 |
if ( ! defined( 'SSP_VERSION' ) ) {
|
37 |
+
define( 'SSP_VERSION', '1.2.7' );
|
38 |
}
|
39 |
if ( ! defined( 'SSP_FILE' ) ) {
|
40 |
define( 'SSP_FILE', __FILE__ );
|