Version Description
Download this release
Release Info
Developer | miyauchi |
Plugin | WP Total Hacks |
Version | 1.5.0 |
Comparing to | |
See all releases |
Code changes from version 1.4.0 to 1.5.0
- includes/admin.php +4 -0
- readme.txt +3 -2
- wp-total-hacks.php +2 -2
includes/admin.php
CHANGED
@@ -17,6 +17,10 @@ private $contributors = array(
|
|
17 |
'country' => 'Japan',
|
18 |
'url' => 'http://profiles.wordpress.org/users/mako09',
|
19 |
),
|
|
|
|
|
|
|
|
|
20 |
);
|
21 |
private $translators = array(
|
22 |
'Takayuki Miyauchi' => array(
|
17 |
'country' => 'Japan',
|
18 |
'url' => 'http://profiles.wordpress.org/users/mako09',
|
19 |
),
|
20 |
+
'Shuhei Nishimura' => array(
|
21 |
+
'country' => 'Japan',
|
22 |
+
'url' => 'http://private.hibou-web.com/',
|
23 |
+
),
|
24 |
);
|
25 |
private $translators = array(
|
26 |
'Takayuki Miyauchi' => array(
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: miyauchi
|
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=FR7RD5SGEU69Y
|
4 |
Tags: head, post, page, functions.php, admin, logo, auto save, revision, meta box, dashboard
|
5 |
Requires at least: 3.5
|
6 |
-
Tested up to: 3.
|
7 |
-
Stable tag: 1.
|
8 |
|
9 |
WP Total Hacks can customize more than 20 settings on your WordPress Site.
|
10 |
PHP5 is required!
|
@@ -74,6 +74,7 @@ Please contact to me.
|
|
74 |
* [Takayuki Miyauchi](http://firegoby.theta.ne.jp/)
|
75 |
* [Felix Kern](http://twitter.com/#!/kernfel)
|
76 |
* [Mako](http://profiles.wordpress.org/users/mako09)
|
|
|
77 |
|
78 |
|
79 |
== Installation ==
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=FR7RD5SGEU69Y
|
4 |
Tags: head, post, page, functions.php, admin, logo, auto save, revision, meta box, dashboard
|
5 |
Requires at least: 3.5
|
6 |
+
Tested up to: 3.8
|
7 |
+
Stable tag: 1.5.0
|
8 |
|
9 |
WP Total Hacks can customize more than 20 settings on your WordPress Site.
|
10 |
PHP5 is required!
|
74 |
* [Takayuki Miyauchi](http://firegoby.theta.ne.jp/)
|
75 |
* [Felix Kern](http://twitter.com/#!/kernfel)
|
76 |
* [Mako](http://profiles.wordpress.org/users/mako09)
|
77 |
+
* [Shuhei Nishimura](http://private.hibou-web.com/)
|
78 |
|
79 |
|
80 |
== Installation ==
|
wp-total-hacks.php
CHANGED
@@ -4,7 +4,7 @@ Plugin Name: WP Total Hacks
|
|
4 |
Author: Takayuki Miyauchi
|
5 |
Plugin URI: http://wpist.me/wp/wp-total-hacks/
|
6 |
Description: WP Total Hacks can customize your WordPress.
|
7 |
-
Version: 1.
|
8 |
Author URI: http://wpist.me/
|
9 |
Domain Path: /languages
|
10 |
Text Domain: wp-total-hacks
|
@@ -325,7 +325,7 @@ public function login_head()
|
|
325 |
{
|
326 |
if ($this->op("wfb_login_logo")) {
|
327 |
printf(
|
328 |
-
'<style type="text/css">h1 a {background-image: url(%s) !important;}</style>',
|
329 |
$this->remove_scheme(esc_url($this->op('wfb_login_logo')))
|
330 |
);
|
331 |
}
|
4 |
Author: Takayuki Miyauchi
|
5 |
Plugin URI: http://wpist.me/wp/wp-total-hacks/
|
6 |
Description: WP Total Hacks can customize your WordPress.
|
7 |
+
Version: 1.5.0
|
8 |
Author URI: http://wpist.me/
|
9 |
Domain Path: /languages
|
10 |
Text Domain: wp-total-hacks
|
325 |
{
|
326 |
if ($this->op("wfb_login_logo")) {
|
327 |
printf(
|
328 |
+
'<style type="text/css">h1 a {background-image: url(%s) !important;}#login h1 a { width: auto !important; background-size: auto !important; }</style>',
|
329 |
$this->remove_scheme(esc_url($this->op('wfb_login_logo')))
|
330 |
);
|
331 |
}
|