Version Description
- Genesis 2.0 favicon unhook location fix
Download this release
Release Info
Developer | nathanrice |
Plugin | Genesis Simple Hooks |
Version | 2.0.1 |
Comparing to | |
See all releases |
Code changes from version 2.0.0 to 2.0.1
- admin.php +3 -3
- plugin.php +1 -1
- readme.txt +4 -1
admin.php
CHANGED
@@ -201,12 +201,13 @@ class Genesis_Simple_Hooks_Admin extends Genesis_Admin_Boxes {
|
|
201 |
|
202 |
simplehooks_form_generate( array(
|
203 |
'hook' => 'wp_head',
|
204 |
-
'desc' => __( 'This hook executes immediately before the closing <code></head></code> tag.', 'simplehooks' )
|
|
|
205 |
) );
|
206 |
|
207 |
simplehooks_form_generate( array(
|
208 |
'hook' => 'wp_footer',
|
209 |
-
'desc' => __( 'This hook executes immediately before the closing <code></body></code> tag.', 'simplehooks' )
|
210 |
) );
|
211 |
|
212 |
submit_button( __( 'Save Changes', 'simplehooks' ), 'primary' );
|
@@ -223,7 +224,6 @@ class Genesis_Simple_Hooks_Admin extends Genesis_Admin_Boxes {
|
|
223 |
simplehooks_form_generate( array(
|
224 |
'hook' => 'genesis_meta',
|
225 |
'desc' => __( 'This hook executes in the document <code><head></code>.<br /> It is commonly used to output <code>META</code> information about the document.', 'simplehooks' ),
|
226 |
-
'unhook' => array( 'genesis_load_favicon' )
|
227 |
) );
|
228 |
|
229 |
simplehooks_form_generate( array(
|
201 |
|
202 |
simplehooks_form_generate( array(
|
203 |
'hook' => 'wp_head',
|
204 |
+
'desc' => __( 'This hook executes immediately before the closing <code></head></code> tag.', 'simplehooks' ),
|
205 |
+
'unhook' => array( 'genesis_load_favicon' ),
|
206 |
) );
|
207 |
|
208 |
simplehooks_form_generate( array(
|
209 |
'hook' => 'wp_footer',
|
210 |
+
'desc' => __( 'This hook executes immediately before the closing <code></body></code> tag.', 'simplehooks' ),
|
211 |
) );
|
212 |
|
213 |
submit_button( __( 'Save Changes', 'simplehooks' ), 'primary' );
|
224 |
simplehooks_form_generate( array(
|
225 |
'hook' => 'genesis_meta',
|
226 |
'desc' => __( 'This hook executes in the document <code><head></code>.<br /> It is commonly used to output <code>META</code> information about the document.', 'simplehooks' ),
|
|
|
227 |
) );
|
228 |
|
229 |
simplehooks_form_generate( array(
|
plugin.php
CHANGED
@@ -8,7 +8,7 @@
|
|
8 |
Author: Nathan Rice
|
9 |
Author URI: http://www.nathanrice.net/
|
10 |
|
11 |
-
Version: 2.0.
|
12 |
|
13 |
License: GNU General Public License v2.0 (or later)
|
14 |
License URI: http://www.opensource.org/licenses/gpl-license.php
|
8 |
Author: Nathan Rice
|
9 |
Author URI: http://www.nathanrice.net/
|
10 |
|
11 |
+
Version: 2.0.1
|
12 |
|
13 |
License: GNU General Public License v2.0 (or later)
|
14 |
License URI: http://www.opensource.org/licenses/gpl-license.php
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
|
|
4 |
Tags: hooks, genesis, genesiswp, studiopress
|
5 |
Requires at least: 3.6
|
6 |
Tested up to: 3.6
|
7 |
-
Stable tag: 2.0.
|
8 |
|
9 |
This plugin creates a new Genesis settings page that allows you to insert code (HTML, Shortcodes, and PHP), and attach it to any of the 50+ action hooks throughout the Genesis Theme Framework, from StudioPress.
|
10 |
|
@@ -122,3 +122,6 @@ The most common request from Genesis users is how to properly modify their foote
|
|
122 |
= 2.0.0 =
|
123 |
* Updated to use new entry hooks in Genesis 2.0.
|
124 |
* Remove unused boxes.php file.
|
|
|
|
|
|
4 |
Tags: hooks, genesis, genesiswp, studiopress
|
5 |
Requires at least: 3.6
|
6 |
Tested up to: 3.6
|
7 |
+
Stable tag: 2.0.1
|
8 |
|
9 |
This plugin creates a new Genesis settings page that allows you to insert code (HTML, Shortcodes, and PHP), and attach it to any of the 50+ action hooks throughout the Genesis Theme Framework, from StudioPress.
|
10 |
|
122 |
= 2.0.0 =
|
123 |
* Updated to use new entry hooks in Genesis 2.0.
|
124 |
* Remove unused boxes.php file.
|
125 |
+
|
126 |
+
= 2.0.1 =
|
127 |
+
* Genesis 2.0 favicon unhook location fix
|