WP Hyper Response - Version 1.3

Version Description

  • Bug fix (Redirect error)

=

Download this release

Release Info

Developer natsuki1982
Plugin Icon wp plugin WP Hyper Response
Version 1.3
Comparing to
See all releases

Code changes from version 1.2 to 1.3

Files changed (2) hide show
  1. readme.txt +4 -1
  2. wp-hyper-response.php +1 -4
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://stocker.jp/
4
  Tags: performance
5
  Requires at least: 3.0
6
  Tested up to: 3.1
7
- Stable tag: 1.2
8
 
9
  This plugin improves the response of WordPress.
10
  WordPressサイト及び管理画面のレスポンスを向上させるプラグインです。
@@ -39,5 +39,8 @@ None.
39
  = 1.2 =
40
  * First release edition
41
 
 
 
 
42
  == Arbitrary section ==
43
  None.
4
  Tags: performance
5
  Requires at least: 3.0
6
  Tested up to: 3.1
7
+ Stable tag: 1.3
8
 
9
  This plugin improves the response of WordPress.
10
  WordPressサイト及び管理画面のレスポンスを向上させるプラグインです。
39
  = 1.2 =
40
  * First release edition
41
 
42
+ = 1.3 =
43
+ * Bug fix (Redirect error)
44
+
45
  == Arbitrary section ==
46
  None.
wp-hyper-response.php CHANGED
@@ -3,14 +3,11 @@
3
  Plugin Name: WP Hyper Response
4
  Plugin URI: http://stocker.jp/diary/wp-hyper-response/
5
  Description: WordPressサイト及び管理画面のレスポンスを向上させるプラグインです。
6
- Version: 1.2
7
  Author: なつき(@Stocker_jp)
8
  Author URI: http://stocker.jp/
9
  */
10
 
11
- // init(管理画面&サイトの先頭)で wp_hyper_response()関数を実行(優先度 9999=最低)
12
- add_action ( 'init', 'wp_hyper_response', 9999 );
13
-
14
  // admin_head(管理画面のヘッダ)で wp_hyper_response()関数を実行(優先度 9999=最低)
15
  add_action ( 'admin_head', 'wp_hyper_response', 9999 );
16
 
3
  Plugin Name: WP Hyper Response
4
  Plugin URI: http://stocker.jp/diary/wp-hyper-response/
5
  Description: WordPressサイト及び管理画面のレスポンスを向上させるプラグインです。
6
+ Version: 1.3
7
  Author: なつき(@Stocker_jp)
8
  Author URI: http://stocker.jp/
9
  */
10
 
 
 
 
11
  // admin_head(管理画面のヘッダ)で wp_hyper_response()関数を実行(優先度 9999=最低)
12
  add_action ( 'admin_head', 'wp_hyper_response', 9999 );
13