WP Total Hacks - Version 1.4.0

Version Description

Download this release

Release Info

Developer miyauchi
Plugin Icon wp plugin WP Total Hacks
Version 1.4.0
Comparing to
See all releases

Code changes from version 1.3.1 to 1.4.0

Files changed (3) hide show
  1. includes/form/site.php +1 -3
  2. readme.txt +2 -2
  3. wp-total-hacks.php +1 -4
includes/form/site.php CHANGED
@@ -84,12 +84,10 @@
84
  <div class="block">
85
  <h4><img src="<?php echo $this->get_plugin_url(); ?>/img/check.png" height="24" width="24" /><?php _e('Webmaster Tools Verification', 'wp-total-hacks'); ?></h4>
86
  <div class="block_content">
87
- <p><?php _e('Enter your meta key "content" value to verify your blog with <a href="https://www.google.com/webmasters/tools/">Google Webmaster Tools</a>, <a href="https://siteexplorer.search.yahoo.com/">Yahoo! Site Explorer</a>, and <a href="http://www.bing.com/webmaster">Bing Webmaster Center</a>.', 'wp-total-hacks'); ?></p>
88
  <dl>
89
  <dt>Google</dt>
90
  <dd><input class="text" type="text" name="wfb_google" value="<?php $this->op('wfb_google')?>" /></dd>
91
- <dt>Yahoo</dt>
92
- <dd><input class="text" type="text" name="wfb_yahoo" value="<?php $this->op('wfb_yahoo')?>" /></dd>
93
  <dt>Bing</dt>
94
  <dd><input class="text" type="text" name="wfb_bing" value="<?php $this->op('wfb_bing')?>" /></dd>
95
  </dl>
84
  <div class="block">
85
  <h4><img src="<?php echo $this->get_plugin_url(); ?>/img/check.png" height="24" width="24" /><?php _e('Webmaster Tools Verification', 'wp-total-hacks'); ?></h4>
86
  <div class="block_content">
87
+ <p><?php _e('Enter your meta key "content" value to verify your blog with <a href="https://www.google.com/webmasters/tools/">Google Webmaster Tools</a> and <a href="http://www.bing.com/webmaster">Bing Webmaster Center</a>.', 'wp-total-hacks'); ?></p>
88
  <dl>
89
  <dt>Google</dt>
90
  <dd><input class="text" type="text" name="wfb_google" value="<?php $this->op('wfb_google')?>" /></dd>
 
 
91
  <dt>Bing</dt>
92
  <dd><input class="text" type="text" name="wfb_bing" value="<?php $this->op('wfb_bing')?>" /></dd>
93
  </dl>
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.5
7
- Stable tag: 1.3.1
8
 
9
  WP Total Hacks can customize more than 20 settings on your WordPress Site.
10
  PHP5 is required!
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
7
+ Stable tag: 1.4.0
8
 
9
  WP Total Hacks can customize more than 20 settings on your WordPress Site.
10
  PHP5 is required!
wp-total-hacks.php CHANGED
@@ -4,8 +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
- Author: Takayuki Miyauchi
8
- Version: 1.3.1
9
  Author URI: http://wpist.me/
10
  Domain Path: /languages
11
  Text Domain: wp-total-hacks
@@ -24,7 +23,6 @@ private $option_params = array(
24
  'wfb_apple_icon_precomposed' => 'bool',
25
  'wfb_hide_version' => 'bool',
26
  'wfb_google' => 'text',
27
- 'wfb_yahoo' => 'text',
28
  'wfb_bing' => 'text',
29
  'wfb_hide_custom_fields' => 'bool',
30
  'wfb_revision' => 'int',
@@ -276,7 +274,6 @@ public function wp_head()
276
  printf($link, $this->remove_scheme(esc_url($this->op("wfb_apple_icon"))));
277
  }
278
  echo $this->get_meta('google-site-verification', $this->op('wfb_google'));
279
- echo $this->get_meta('y_key', $this->op('wfb_yahoo'));
280
  echo $this->get_meta('msvalidate.01', $this->op('wfb_bing'));
281
 
282
  if (is_user_logged_in() && $this->op("wfb_custom_logo")) {
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.4.0
 
8
  Author URI: http://wpist.me/
9
  Domain Path: /languages
10
  Text Domain: wp-total-hacks
23
  'wfb_apple_icon_precomposed' => 'bool',
24
  'wfb_hide_version' => 'bool',
25
  'wfb_google' => 'text',
 
26
  'wfb_bing' => 'text',
27
  'wfb_hide_custom_fields' => 'bool',
28
  'wfb_revision' => 'int',
274
  printf($link, $this->remove_scheme(esc_url($this->op("wfb_apple_icon"))));
275
  }
276
  echo $this->get_meta('google-site-verification', $this->op('wfb_google'));
 
277
  echo $this->get_meta('msvalidate.01', $this->op('wfb_bing'));
278
 
279
  if (is_user_logged_in() && $this->op("wfb_custom_logo")) {